Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 44 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 53534432 | 308 days ago | IN | 0 POL | 0.00235145 | ||||
Set Approval For... | 51716738 | 355 days ago | IN | 0 POL | 0.00485429 | ||||
Set Approval For... | 44773239 | 531 days ago | IN | 0 POL | 0.0055637 | ||||
Safe Transfer Fr... | 44743778 | 531 days ago | IN | 0 POL | 0.00720319 | ||||
Set Approval For... | 44197033 | 545 days ago | IN | 0 POL | 0.00771629 | ||||
Set Approval For... | 42784090 | 582 days ago | IN | 0 POL | 0.00803951 | ||||
Set Approval For... | 40940977 | 629 days ago | IN | 0 POL | 0.00402414 | ||||
Safe Transfer Fr... | 40802802 | 633 days ago | IN | 0 POL | 0.00471063 | ||||
Set Approval For... | 39960445 | 655 days ago | IN | 0 POL | 0.00655533 | ||||
Set Approval For... | 39959936 | 655 days ago | IN | 0 POL | 0.00458453 | ||||
Set Approval For... | 39194414 | 676 days ago | IN | 0 POL | 0.00798674 | ||||
Set Approval For... | 39194373 | 676 days ago | IN | 0 POL | 0.00684762 | ||||
Set Approval For... | 39061948 | 679 days ago | IN | 0 POL | 0.01602081 | ||||
Set Approval For... | 39061932 | 679 days ago | IN | 0 POL | 0.01009936 | ||||
Safe Transfer Fr... | 39006814 | 680 days ago | IN | 0 POL | 0.00519036 | ||||
Safe Transfer Fr... | 39006766 | 680 days ago | IN | 0 POL | 0.00719437 | ||||
Airdrop | 38984267 | 681 days ago | IN | 0 POL | 1.97174789 | ||||
Airdrop | 38983882 | 681 days ago | IN | 0 POL | 1.02677361 | ||||
Airdrop | 38983850 | 681 days ago | IN | 0 POL | 1.190571 | ||||
Airdrop | 38983765 | 681 days ago | IN | 0 POL | 0.91821509 | ||||
Airdrop | 38983730 | 681 days ago | IN | 0 POL | 1.01590931 | ||||
Airdrop | 38983696 | 681 days ago | IN | 0 POL | 1.21338116 | ||||
Airdrop | 38983650 | 681 days ago | IN | 0 POL | 1.1044582 | ||||
Airdrop | 38983612 | 681 days ago | IN | 0 POL | 1.13536555 | ||||
Airdrop | 38983563 | 681 days ago | IN | 0 POL | 1.27323615 |
Loading...
Loading
Contract Name:
tastytoastysevents
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2023-02-06 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/token/ERC1155/IERC1155.sol // OpenZeppelin Contracts (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: @openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC1155/ERC1155.sol // OpenZeppelin Contracts (last updated v4.8.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: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not token owner or approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not token owner or approved" ); _burnBatch(account, ids, values); } } // File: @openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 supply = _totalSupply[id]; require(supply >= amount, "ERC1155: burn amount exceeds totalSupply"); unchecked { _totalSupply[id] = supply - amount; } } } } } // File: contracts/tastytoastysevent.sol pragma solidity ^0.8.0; contract tastytoastysevents is ERC1155, ERC1155Supply, ERC1155Burnable, Ownable { string private _contractURI; address public minterAddress; string _name = "tastytoastysevents"; string _symbol = "TASTYTOASTYSEVENTS"; constructor() ERC1155("") {} /** * @notice set address of minter for airdrops */ function setMinterAddress(address minter) public onlyOwner { minterAddress = minter; } modifier onlyMinter { require(minterAddress == msg.sender || owner() == msg.sender, "You must have the Minter role"); _; } /** * @notice mint a collection */ function mint(uint256 id, uint256 amount) public onlyMinter { _mint(msg.sender, id, amount, ""); } /** * @notice mint a batch of token collections */ function mintBatch( uint256[] memory ids, uint256[] memory amounts ) public onlyMinter { _mintBatch(msg.sender, ids, amounts, ""); } /** * @notice airdrop a specific token to a list of addresses */ function airdrop(address[] calldata addresses, uint id, uint amt_each) public onlyMinter { for (uint i=0; i < addresses.length; i++) { _mint(addresses[i], id, amt_each, ""); } } /** * @notice set token base uri */ function setURI(string memory baseURI) public onlyMinter { _setURI(baseURI); } /** * @notice get name of token */ function name() public view returns (string memory) { return _name; } /** * @notice get token symbol */ function symbol() public view returns (string memory) { return _symbol; } /** * @notice set contract uri https://docs.opensea.io/docs/contract-level-metadata */ function setContractURI(string memory newContractURI) public onlyOwner { _contractURI = newContractURI; } function contractURI() public view returns (string memory) { return _contractURI; } /** * @notice Withdraw ETH in contract to ownership wallet */ function withdraw() external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amt_each","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"setMinterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","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":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601281526020017f7461737479746f61737479736576656e747300000000000000000000000000008152506007908051906020019062000051929190620001e0565b506040518060400160405280601281526020017f5441535459544f41535459534556454e54530000000000000000000000000000815250600890805190602001906200009f929190620001e0565b50348015620000ad57600080fd5b5060405180602001604052806000815250620000cf81620000f660201b60201c565b50620000f0620000e46200011260201b60201c565b6200011a60201b60201c565b620002f5565b80600290805190602001906200010e929190620001e0565b5050565b600033905090565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ee9062000290565b90600052602060002090601f0160209004810192826200021257600085556200025e565b82601f106200022d57805160ff19168380011785556200025e565b828001600101855582156200025e579182015b828111156200025d57825182559160200191906001019062000240565b5b5090506200026d919062000271565b5090565b5b808211156200028c57600081600090555060010162000272565b5090565b60006002820490506001821680620002a957607f821691505b60208210811415620002c057620002bf620002c6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61474680620003056000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c80638da5cb5b116100de578063bd85b03911610097578063e985e9c511610071578063e985e9c514610458578063f242432a14610488578063f2fde38b146104a4578063f5298aca146104c05761018d565b8063bd85b039146103ee578063d351cfdc1461041e578063e8a3d4851461043a5761018d565b80638da5cb5b14610342578063938e3d7b1461036057806395d89b411461037c578063a22cb4651461039a578063a3106b95146103b6578063a496dedf146103d25761018d565b80632eb2c2d61161014b5780634e1273f4116101255780634e1273f4146102bc5780634f558e79146102ec5780636b20c4541461031c578063715018a6146103385761018d565b80632eb2c2d61461027857806334d722c9146102945780633ccfd60b146102b25761018d565b8062fdd58e1461019257806301ffc9a7146101c257806302fe5305146101f257806306fdde031461020e5780630e89341c1461022c5780631b2ef1ca1461025c575b600080fd5b6101ac60048036038101906101a79190613202565b6104dc565b6040516101b99190613c8e565b60405180910390f35b6101dc60048036038101906101d791906133f9565b6105a5565b6040516101e99190613a11565b60405180910390f35b61020c60048036038101906102079190613453565b610687565b005b610216610760565b6040516102239190613a2c565b60405180910390f35b6102466004803603810190610241919061349c565b6107f2565b6040516102539190613a2c565b60405180910390f35b610276600480360381019061027191906134c9565b610886565b005b610292600480360381019061028d9190612fd1565b610972565b005b61029c610a13565b6040516102a991906138db565b60405180910390f35b6102ba610a39565b005b6102d660048036038101906102d19190613309565b610a5a565b6040516102e391906139b8565b60405180910390f35b6103066004803603810190610301919061349c565b610b73565b6040516103139190613a11565b60405180910390f35b61033660048036038101906103319190613137565b610b87565b005b610340610c24565b005b61034a610c38565b60405161035791906138db565b60405180910390f35b61037a60048036038101906103759190613453565b610c62565b005b610384610c84565b6040516103919190613a2c565b60405180910390f35b6103b460048036038101906103af91906131c2565b610d16565b005b6103d060048036038101906103cb9190612f64565b610d2c565b005b6103ec60048036038101906103e79190613295565b610d78565b005b6104086004803603810190610403919061349c565b610eaf565b6040516104159190613c8e565b60405180910390f35b61043860048036038101906104339190613381565b610ecc565b005b610442610fb8565b60405161044f9190613a2c565b60405180910390f35b610472600480360381019061046d9190612f91565b61104a565b60405161047f9190613a11565b60405180910390f35b6104a2600480360381019061049d91906130a0565b6110de565b005b6104be60048036038101906104b99190612f64565b61117f565b005b6104da60048036038101906104d59190613242565b611203565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490613aae565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610680575061067f826112a0565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061071557503373ffffffffffffffffffffffffffffffffffffffff166106fd610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90613b4e565b60405180910390fd5b61075d8161130a565b50565b60606007805461076f90613f39565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90613f39565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60606002805461080190613f39565b80601f016020809104026020016040519081016040528092919081815260200182805461082d90613f39565b801561087a5780601f1061084f5761010080835404028352916020019161087a565b820191906000526020600020905b81548152906001019060200180831161085d57829003601f168201915b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061091457503373ffffffffffffffffffffffffffffffffffffffff166108fc610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90613b4e565b60405180910390fd5b61096e33838360405180602001604052806000815250611324565b5050565b61097a6114d5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c057506109bf856109ba6114d5565b61104a565b5b6109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690613ace565b60405180910390fd5b610a0c85858585856114dd565b5050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a416117ff565b6000479050610a57610a51610c38565b8261187d565b50565b60608151835114610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790613c0e565b60405180910390fd5b6000835167ffffffffffffffff811115610abd57610abc614072565b5b604051908082528060200260200182016040528015610aeb5781602001602082028036833780820191505090505b50905060005b8451811015610b6857610b38858281518110610b1057610b0f614043565b5b6020026020010151858381518110610b2b57610b2a614043565b5b60200260200101516104dc565b828281518110610b4b57610b4a614043565b5b60200260200101818152505080610b6190613f9c565b9050610af1565b508091505092915050565b600080610b7f83610eaf565b119050919050565b610b8f6114d5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610bd55750610bd483610bcf6114d5565b61104a565b5b610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613ace565b60405180910390fd5b610c1f838383611971565b505050565b610c2c6117ff565b610c366000611c40565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c6a6117ff565b8060059080519060200190610c80929190612be6565b5050565b606060088054610c9390613f39565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf90613f39565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b5050505050905090565b610d28610d216114d5565b8383611d06565b5050565b610d346117ff565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610e0657503373ffffffffffffffffffffffffffffffffffffffff16610dee610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613b4e565b60405180910390fd5b60005b84849050811015610ea857610e95858583818110610e6957610e68614043565b5b9050602002016020810190610e7e9190612f64565b848460405180602001604052806000815250611324565b8080610ea090613f9c565b915050610e48565b5050505050565b600060036000838152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610f5a57503373ffffffffffffffffffffffffffffffffffffffff16610f42610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613b4e565b60405180910390fd5b610fb433838360405180602001604052806000815250611e73565b5050565b606060058054610fc790613f39565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff390613f39565b80156110405780601f1061101557610100808354040283529160200191611040565b820191906000526020600020905b81548152906001019060200180831161102357829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110e66114d5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061112c575061112b856111266114d5565b61104a565b5b61116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613ace565b60405180910390fd5b61117885858585856120a0565b5050505050565b6111876117ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613a6e565b60405180910390fd5b61120081611c40565b50565b61120b6114d5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061125157506112508361124b6114d5565b61104a565b5b611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790613ace565b60405180910390fd5b61129b83838361233c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8060029080519060200190611320929190612be6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613c4e565b60405180910390fd5b600061139e6114d5565b905060006113ab85612583565b905060006113b885612583565b90506113c9836000898585896125fd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114289190613e2d565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114a6929190613ca9565b60405180910390a46114bd83600089858589612613565b6114cc8360008989898961261b565b50505050505050565b600033905090565b8151835114611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890613c2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890613b2e565b60405180910390fd5b600061159b6114d5565b90506115ab8187878787876125fd565b60005b845181101561175c5760008582815181106115cc576115cb614043565b5b6020026020010151905060008583815181106115eb576115ea614043565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390613b8e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117419190613e2d565b925050819055505050508061175590613f9c565b90506115ae565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117d39291906139da565b60405180910390a46117e9818787878787612613565b6117f7818787878787612802565b505050505050565b6118076114d5565b73ffffffffffffffffffffffffffffffffffffffff16611825610c38565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613bae565b60405180910390fd5b565b804710156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790613b0e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118e6906138c6565b60006040518083038185875af1925050503d8060008114611923576040519150601f19603f3d011682016040523d82523d6000602084013e611928565b606091505b505090508061196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390613aee565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613b6e565b60405180910390fd5b8051825114611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613c2e565b60405180910390fd5b6000611a2f6114d5565b9050611a4f818560008686604051806020016040528060008152506125fd565b60005b8351811015611b9c576000848281518110611a7057611a6f614043565b5b602002602001015190506000848381518110611a8f57611a8e614043565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790613a8e565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611b9490613f9c565b915050611a52565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611c149291906139da565b60405180910390a4611c3a81856000868660405180602001604052806000815250612613565b50505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613bee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e669190613a11565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90613c4e565b60405180910390fd5b8151835114611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613c2e565b60405180910390fd5b6000611f316114d5565b9050611f42816000878787876125fd565b60005b8451811015611ffb57838181518110611f6157611f60614043565b5b6020026020010151600080878481518110611f7f57611f7e614043565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe19190613e2d565b925050819055508080611ff390613f9c565b915050611f45565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120739291906139da565b60405180910390a461208a81600087878787612613565b61209981600087878787612802565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613b2e565b60405180910390fd5b600061211a6114d5565b9050600061212785612583565b9050600061213485612583565b90506121448389898585896125fd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613b8e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122909190613e2d565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161230d929190613ca9565b60405180910390a4612323848a8a86868a612613565b612331848a8a8a8a8a61261b565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a390613b6e565b60405180910390fd5b60006123b66114d5565b905060006123c384612583565b905060006123d084612583565b90506123f0838760008585604051806020016040528060008152506125fd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613a8e565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612554929190613ca9565b60405180910390a461257a84886000868660405180602001604052806000815250612613565b50505050505050565b60606000600167ffffffffffffffff8111156125a2576125a1614072565b5b6040519080825280602002602001820160405280156125d05781602001602082028036833780820191505090505b50905082816000815181106125e8576125e7614043565b5b60200260200101818152505080915050919050565b61260b8686868686866129e9565b505050505050565b505050505050565b61263a8473ffffffffffffffffffffffffffffffffffffffff16612bbb565b156127fa578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161268095949392919061395e565b602060405180830381600087803b15801561269a57600080fd5b505af19250505080156126cb57506040513d601f19601f820116820180604052508101906126c89190613426565b60015b612771576126d76140a1565b806308c379a0141561273457506126ec61461e565b806126f75750612736565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b9190613a2c565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613c6e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90613a4e565b60405180910390fd5b505b505050505050565b6128218473ffffffffffffffffffffffffffffffffffffffff16612bbb565b156129e1578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128679594939291906138f6565b602060405180830381600087803b15801561288157600080fd5b505af19250505080156128b257506040513d601f19601f820116820180604052508101906128af9190613426565b60015b612958576128be6140a1565b806308c379a0141561291b57506128d361461e565b806128de575061291d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129129190613a2c565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90613c6e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d690613a4e565b60405180910390fd5b505b505050505050565b6129f7868686868686612bde565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612aa95760005b8351811015612aa757828181518110612a4b57612a4a614043565b5b602002602001015160036000868481518110612a6a57612a69614043565b5b602002602001015181526020019081526020016000206000828254612a8f9190613e2d565b9250508190555080612aa090613f9c565b9050612a2f565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bb35760005b8351811015612bb1576000848281518110612aff57612afe614043565b5b602002602001015190506000848381518110612b1e57612b1d614043565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90613bce565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080612baa90613f9c565b9050612ae1565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054612bf290613f39565b90600052602060002090601f016020900481019282612c145760008555612c5b565b82601f10612c2d57805160ff1916838001178555612c5b565b82800160010185558215612c5b579182015b82811115612c5a578251825591602001919060010190612c3f565b5b509050612c689190612c6c565b5090565b5b80821115612c85576000816000905550600101612c6d565b5090565b6000612c9c612c9784613cf7565b613cd2565b90508083825260208201905082856020860282011115612cbf57612cbe6140cd565b5b60005b85811015612cef5781612cd58882612ded565b845260208401935060208301925050600181019050612cc2565b5050509392505050565b6000612d0c612d0784613d23565b613cd2565b90508083825260208201905082856020860282011115612d2f57612d2e6140cd565b5b60005b85811015612d5f5781612d458882612f4f565b845260208401935060208301925050600181019050612d32565b5050509392505050565b6000612d7c612d7784613d4f565b613cd2565b905082815260208101848484011115612d9857612d976140d2565b5b612da3848285613ef7565b509392505050565b6000612dbe612db984613d80565b613cd2565b905082815260208101848484011115612dda57612dd96140d2565b5b612de5848285613ef7565b509392505050565b600081359050612dfc816146b4565b92915050565b60008083601f840112612e1857612e176140c8565b5b8235905067ffffffffffffffff811115612e3557612e346140c3565b5b602083019150836020820283011115612e5157612e506140cd565b5b9250929050565b600082601f830112612e6d57612e6c6140c8565b5b8135612e7d848260208601612c89565b91505092915050565b600082601f830112612e9b57612e9a6140c8565b5b8135612eab848260208601612cf9565b91505092915050565b600081359050612ec3816146cb565b92915050565b600081359050612ed8816146e2565b92915050565b600081519050612eed816146e2565b92915050565b600082601f830112612f0857612f076140c8565b5b8135612f18848260208601612d69565b91505092915050565b600082601f830112612f3657612f356140c8565b5b8135612f46848260208601612dab565b91505092915050565b600081359050612f5e816146f9565b92915050565b600060208284031215612f7a57612f796140dc565b5b6000612f8884828501612ded565b91505092915050565b60008060408385031215612fa857612fa76140dc565b5b6000612fb685828601612ded565b9250506020612fc785828601612ded565b9150509250929050565b600080600080600060a08688031215612fed57612fec6140dc565b5b6000612ffb88828901612ded565b955050602061300c88828901612ded565b945050604086013567ffffffffffffffff81111561302d5761302c6140d7565b5b61303988828901612e86565b935050606086013567ffffffffffffffff81111561305a576130596140d7565b5b61306688828901612e86565b925050608086013567ffffffffffffffff811115613087576130866140d7565b5b61309388828901612ef3565b9150509295509295909350565b600080600080600060a086880312156130bc576130bb6140dc565b5b60006130ca88828901612ded565b95505060206130db88828901612ded565b94505060406130ec88828901612f4f565b93505060606130fd88828901612f4f565b925050608086013567ffffffffffffffff81111561311e5761311d6140d7565b5b61312a88828901612ef3565b9150509295509295909350565b6000806000606084860312156131505761314f6140dc565b5b600061315e86828701612ded565b935050602084013567ffffffffffffffff81111561317f5761317e6140d7565b5b61318b86828701612e86565b925050604084013567ffffffffffffffff8111156131ac576131ab6140d7565b5b6131b886828701612e86565b9150509250925092565b600080604083850312156131d9576131d86140dc565b5b60006131e785828601612ded565b92505060206131f885828601612eb4565b9150509250929050565b60008060408385031215613219576132186140dc565b5b600061322785828601612ded565b925050602061323885828601612f4f565b9150509250929050565b60008060006060848603121561325b5761325a6140dc565b5b600061326986828701612ded565b935050602061327a86828701612f4f565b925050604061328b86828701612f4f565b9150509250925092565b600080600080606085870312156132af576132ae6140dc565b5b600085013567ffffffffffffffff8111156132cd576132cc6140d7565b5b6132d987828801612e02565b945094505060206132ec87828801612f4f565b92505060406132fd87828801612f4f565b91505092959194509250565b600080604083850312156133205761331f6140dc565b5b600083013567ffffffffffffffff81111561333e5761333d6140d7565b5b61334a85828601612e58565b925050602083013567ffffffffffffffff81111561336b5761336a6140d7565b5b61337785828601612e86565b9150509250929050565b60008060408385031215613398576133976140dc565b5b600083013567ffffffffffffffff8111156133b6576133b56140d7565b5b6133c285828601612e86565b925050602083013567ffffffffffffffff8111156133e3576133e26140d7565b5b6133ef85828601612e86565b9150509250929050565b60006020828403121561340f5761340e6140dc565b5b600061341d84828501612ec9565b91505092915050565b60006020828403121561343c5761343b6140dc565b5b600061344a84828501612ede565b91505092915050565b600060208284031215613469576134686140dc565b5b600082013567ffffffffffffffff811115613487576134866140d7565b5b61349384828501612f21565b91505092915050565b6000602082840312156134b2576134b16140dc565b5b60006134c084828501612f4f565b91505092915050565b600080604083850312156134e0576134df6140dc565b5b60006134ee85828601612f4f565b92505060206134ff85828601612f4f565b9150509250929050565b600061351583836138a8565b60208301905092915050565b61352a81613e83565b82525050565b600061353b82613dc1565b6135458185613def565b935061355083613db1565b8060005b838110156135815781516135688882613509565b975061357383613de2565b925050600181019050613554565b5085935050505092915050565b61359781613e95565b82525050565b60006135a882613dcc565b6135b28185613e00565b93506135c2818560208601613f06565b6135cb816140e1565b840191505092915050565b60006135e182613dd7565b6135eb8185613e1c565b93506135fb818560208601613f06565b613604816140e1565b840191505092915050565b600061361c602883613e1c565b9150613627826140ff565b604082019050919050565b600061363f602683613e1c565b915061364a8261414e565b604082019050919050565b6000613662602483613e1c565b915061366d8261419d565b604082019050919050565b6000613685602a83613e1c565b9150613690826141ec565b604082019050919050565b60006136a8602e83613e1c565b91506136b38261423b565b604082019050919050565b60006136cb603a83613e1c565b91506136d68261428a565b604082019050919050565b60006136ee601d83613e1c565b91506136f9826142d9565b602082019050919050565b6000613711602583613e1c565b915061371c82614302565b604082019050919050565b6000613734601d83613e1c565b915061373f82614351565b602082019050919050565b6000613757602383613e1c565b91506137628261437a565b604082019050919050565b600061377a602a83613e1c565b9150613785826143c9565b604082019050919050565b600061379d602083613e1c565b91506137a882614418565b602082019050919050565b60006137c0602883613e1c565b91506137cb82614441565b604082019050919050565b60006137e3600083613e11565b91506137ee82614490565b600082019050919050565b6000613806602983613e1c565b915061381182614493565b604082019050919050565b6000613829602983613e1c565b9150613834826144e2565b604082019050919050565b600061384c602883613e1c565b915061385782614531565b604082019050919050565b600061386f602183613e1c565b915061387a82614580565b604082019050919050565b6000613892603483613e1c565b915061389d826145cf565b604082019050919050565b6138b181613eed565b82525050565b6138c081613eed565b82525050565b60006138d1826137d6565b9150819050919050565b60006020820190506138f06000830184613521565b92915050565b600060a08201905061390b6000830188613521565b6139186020830187613521565b818103604083015261392a8186613530565b9050818103606083015261393e8185613530565b90508181036080830152613952818461359d565b90509695505050505050565b600060a0820190506139736000830188613521565b6139806020830187613521565b61398d60408301866138b7565b61399a60608301856138b7565b81810360808301526139ac818461359d565b90509695505050505050565b600060208201905081810360008301526139d28184613530565b905092915050565b600060408201905081810360008301526139f48185613530565b90508181036020830152613a088184613530565b90509392505050565b6000602082019050613a26600083018461358e565b92915050565b60006020820190508181036000830152613a4681846135d6565b905092915050565b60006020820190508181036000830152613a678161360f565b9050919050565b60006020820190508181036000830152613a8781613632565b9050919050565b60006020820190508181036000830152613aa781613655565b9050919050565b60006020820190508181036000830152613ac781613678565b9050919050565b60006020820190508181036000830152613ae78161369b565b9050919050565b60006020820190508181036000830152613b07816136be565b9050919050565b60006020820190508181036000830152613b27816136e1565b9050919050565b60006020820190508181036000830152613b4781613704565b9050919050565b60006020820190508181036000830152613b6781613727565b9050919050565b60006020820190508181036000830152613b878161374a565b9050919050565b60006020820190508181036000830152613ba78161376d565b9050919050565b60006020820190508181036000830152613bc781613790565b9050919050565b60006020820190508181036000830152613be7816137b3565b9050919050565b60006020820190508181036000830152613c07816137f9565b9050919050565b60006020820190508181036000830152613c278161381c565b9050919050565b60006020820190508181036000830152613c478161383f565b9050919050565b60006020820190508181036000830152613c6781613862565b9050919050565b60006020820190508181036000830152613c8781613885565b9050919050565b6000602082019050613ca360008301846138b7565b92915050565b6000604082019050613cbe60008301856138b7565b613ccb60208301846138b7565b9392505050565b6000613cdc613ced565b9050613ce88282613f6b565b919050565b6000604051905090565b600067ffffffffffffffff821115613d1257613d11614072565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d3e57613d3d614072565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d6a57613d69614072565b5b613d73826140e1565b9050602081019050919050565b600067ffffffffffffffff821115613d9b57613d9a614072565b5b613da4826140e1565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000613e3882613eed565b9150613e4383613eed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e7857613e77613fe5565b5b828201905092915050565b6000613e8e82613ecd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f24578082015181840152602081019050613f09565b83811115613f33576000848401525b50505050565b60006002820490506001821680613f5157607f821691505b60208210811415613f6557613f64614014565b5b50919050565b613f74826140e1565b810181811067ffffffffffffffff82111715613f9357613f92614072565b5b80604052505050565b6000613fa782613eed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fda57613fd9613fe5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140c05760046000803e6140bd6000516140f2565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206861766520746865204d696e74657220726f6c65000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d101561462e576146b1565b614636613ced565b60043d036004823e80513d602482011167ffffffffffffffff8211171561465e5750506146b1565b808201805167ffffffffffffffff81111561467c57505050506146b1565b80602083010160043d0385018111156146995750505050506146b1565b6146a882602001850186613f6b565b82955050505050505b90565b6146bd81613e83565b81146146c857600080fd5b50565b6146d481613e95565b81146146df57600080fd5b50565b6146eb81613ea1565b81146146f657600080fd5b50565b61470281613eed565b811461470d57600080fd5b5056fea2646970667358221220a521b52c003dc97a91b6b8151d739966002390047f9df71e782385494381131964736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c80638da5cb5b116100de578063bd85b03911610097578063e985e9c511610071578063e985e9c514610458578063f242432a14610488578063f2fde38b146104a4578063f5298aca146104c05761018d565b8063bd85b039146103ee578063d351cfdc1461041e578063e8a3d4851461043a5761018d565b80638da5cb5b14610342578063938e3d7b1461036057806395d89b411461037c578063a22cb4651461039a578063a3106b95146103b6578063a496dedf146103d25761018d565b80632eb2c2d61161014b5780634e1273f4116101255780634e1273f4146102bc5780634f558e79146102ec5780636b20c4541461031c578063715018a6146103385761018d565b80632eb2c2d61461027857806334d722c9146102945780633ccfd60b146102b25761018d565b8062fdd58e1461019257806301ffc9a7146101c257806302fe5305146101f257806306fdde031461020e5780630e89341c1461022c5780631b2ef1ca1461025c575b600080fd5b6101ac60048036038101906101a79190613202565b6104dc565b6040516101b99190613c8e565b60405180910390f35b6101dc60048036038101906101d791906133f9565b6105a5565b6040516101e99190613a11565b60405180910390f35b61020c60048036038101906102079190613453565b610687565b005b610216610760565b6040516102239190613a2c565b60405180910390f35b6102466004803603810190610241919061349c565b6107f2565b6040516102539190613a2c565b60405180910390f35b610276600480360381019061027191906134c9565b610886565b005b610292600480360381019061028d9190612fd1565b610972565b005b61029c610a13565b6040516102a991906138db565b60405180910390f35b6102ba610a39565b005b6102d660048036038101906102d19190613309565b610a5a565b6040516102e391906139b8565b60405180910390f35b6103066004803603810190610301919061349c565b610b73565b6040516103139190613a11565b60405180910390f35b61033660048036038101906103319190613137565b610b87565b005b610340610c24565b005b61034a610c38565b60405161035791906138db565b60405180910390f35b61037a60048036038101906103759190613453565b610c62565b005b610384610c84565b6040516103919190613a2c565b60405180910390f35b6103b460048036038101906103af91906131c2565b610d16565b005b6103d060048036038101906103cb9190612f64565b610d2c565b005b6103ec60048036038101906103e79190613295565b610d78565b005b6104086004803603810190610403919061349c565b610eaf565b6040516104159190613c8e565b60405180910390f35b61043860048036038101906104339190613381565b610ecc565b005b610442610fb8565b60405161044f9190613a2c565b60405180910390f35b610472600480360381019061046d9190612f91565b61104a565b60405161047f9190613a11565b60405180910390f35b6104a2600480360381019061049d91906130a0565b6110de565b005b6104be60048036038101906104b99190612f64565b61117f565b005b6104da60048036038101906104d59190613242565b611203565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561054d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054490613aae565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610680575061067f826112a0565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061071557503373ffffffffffffffffffffffffffffffffffffffff166106fd610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90613b4e565b60405180910390fd5b61075d8161130a565b50565b60606007805461076f90613f39565b80601f016020809104026020016040519081016040528092919081815260200182805461079b90613f39565b80156107e85780601f106107bd576101008083540402835291602001916107e8565b820191906000526020600020905b8154815290600101906020018083116107cb57829003601f168201915b5050505050905090565b60606002805461080190613f39565b80601f016020809104026020016040519081016040528092919081815260200182805461082d90613f39565b801561087a5780601f1061084f5761010080835404028352916020019161087a565b820191906000526020600020905b81548152906001019060200180831161085d57829003601f168201915b50505050509050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148061091457503373ffffffffffffffffffffffffffffffffffffffff166108fc610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90613b4e565b60405180910390fd5b61096e33838360405180602001604052806000815250611324565b5050565b61097a6114d5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c057506109bf856109ba6114d5565b61104a565b5b6109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690613ace565b60405180910390fd5b610a0c85858585856114dd565b5050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610a416117ff565b6000479050610a57610a51610c38565b8261187d565b50565b60608151835114610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790613c0e565b60405180910390fd5b6000835167ffffffffffffffff811115610abd57610abc614072565b5b604051908082528060200260200182016040528015610aeb5781602001602082028036833780820191505090505b50905060005b8451811015610b6857610b38858281518110610b1057610b0f614043565b5b6020026020010151858381518110610b2b57610b2a614043565b5b60200260200101516104dc565b828281518110610b4b57610b4a614043565b5b60200260200101818152505080610b6190613f9c565b9050610af1565b508091505092915050565b600080610b7f83610eaf565b119050919050565b610b8f6114d5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610bd55750610bd483610bcf6114d5565b61104a565b5b610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b90613ace565b60405180910390fd5b610c1f838383611971565b505050565b610c2c6117ff565b610c366000611c40565b565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c6a6117ff565b8060059080519060200190610c80929190612be6565b5050565b606060088054610c9390613f39565b80601f0160208091040260200160405190810160405280929190818152602001828054610cbf90613f39565b8015610d0c5780601f10610ce157610100808354040283529160200191610d0c565b820191906000526020600020905b815481529060010190602001808311610cef57829003601f168201915b5050505050905090565b610d28610d216114d5565b8383611d06565b5050565b610d346117ff565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610e0657503373ffffffffffffffffffffffffffffffffffffffff16610dee610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c90613b4e565b60405180910390fd5b60005b84849050811015610ea857610e95858583818110610e6957610e68614043565b5b9050602002016020810190610e7e9190612f64565b848460405180602001604052806000815250611324565b8080610ea090613f9c565b915050610e48565b5050505050565b600060036000838152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480610f5a57503373ffffffffffffffffffffffffffffffffffffffff16610f42610c38565b73ffffffffffffffffffffffffffffffffffffffff16145b610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090613b4e565b60405180910390fd5b610fb433838360405180602001604052806000815250611e73565b5050565b606060058054610fc790613f39565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff390613f39565b80156110405780601f1061101557610100808354040283529160200191611040565b820191906000526020600020905b81548152906001019060200180831161102357829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6110e66114d5565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061112c575061112b856111266114d5565b61104a565b5b61116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290613ace565b60405180910390fd5b61117885858585856120a0565b5050505050565b6111876117ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee90613a6e565b60405180910390fd5b61120081611c40565b50565b61120b6114d5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061125157506112508361124b6114d5565b61104a565b5b611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790613ace565b60405180910390fd5b61129b83838361233c565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8060029080519060200190611320929190612be6565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90613c4e565b60405180910390fd5b600061139e6114d5565b905060006113ab85612583565b905060006113b885612583565b90506113c9836000898585896125fd565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114289190613e2d565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6289896040516114a6929190613ca9565b60405180910390a46114bd83600089858589612613565b6114cc8360008989898961261b565b50505050505050565b600033905090565b8151835114611521576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151890613c2e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890613b2e565b60405180910390fd5b600061159b6114d5565b90506115ab8187878787876125fd565b60005b845181101561175c5760008582815181106115cc576115cb614043565b5b6020026020010151905060008583815181106115eb576115ea614043565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390613b8e565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117419190613e2d565b925050819055505050508061175590613f9c565b90506115ae565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516117d39291906139da565b60405180910390a46117e9818787878787612613565b6117f7818787878787612802565b505050505050565b6118076114d5565b73ffffffffffffffffffffffffffffffffffffffff16611825610c38565b73ffffffffffffffffffffffffffffffffffffffff161461187b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187290613bae565b60405180910390fd5b565b804710156118c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b790613b0e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118e6906138c6565b60006040518083038185875af1925050503d8060008114611923576040519150601f19603f3d011682016040523d82523d6000602084013e611928565b606091505b505090508061196c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196390613aee565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613b6e565b60405180910390fd5b8051825114611a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1c90613c2e565b60405180910390fd5b6000611a2f6114d5565b9050611a4f818560008686604051806020016040528060008152506125fd565b60005b8351811015611b9c576000848281518110611a7057611a6f614043565b5b602002602001015190506000848381518110611a8f57611a8e614043565b5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2790613a8e565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611b9490613f9c565b915050611a52565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611c149291906139da565b60405180910390a4611c3a81856000868660405180602001604052806000815250612613565b50505050565b6000600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6c90613bee565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e669190613a11565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90613c4e565b60405180910390fd5b8151835114611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613c2e565b60405180910390fd5b6000611f316114d5565b9050611f42816000878787876125fd565b60005b8451811015611ffb57838181518110611f6157611f60614043565b5b6020026020010151600080878481518110611f7f57611f7e614043565b5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fe19190613e2d565b925050819055508080611ff390613f9c565b915050611f45565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516120739291906139da565b60405180910390a461208a81600087878787612613565b61209981600087878787612802565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612110576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210790613b2e565b60405180910390fd5b600061211a6114d5565b9050600061212785612583565b9050600061213485612583565b90506121448389898585896125fd565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d290613b8e565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122909190613e2d565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a60405161230d929190613ca9565b60405180910390a4612323848a8a86868a612613565b612331848a8a8a8a8a61261b565b505050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a390613b6e565b60405180910390fd5b60006123b66114d5565b905060006123c384612583565b905060006123d084612583565b90506123f0838760008585604051806020016040528060008152506125fd565b600080600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905084811015612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613a8e565b60405180910390fd5b84810360008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051612554929190613ca9565b60405180910390a461257a84886000868660405180602001604052806000815250612613565b50505050505050565b60606000600167ffffffffffffffff8111156125a2576125a1614072565b5b6040519080825280602002602001820160405280156125d05781602001602082028036833780820191505090505b50905082816000815181106125e8576125e7614043565b5b60200260200101818152505080915050919050565b61260b8686868686866129e9565b505050505050565b505050505050565b61263a8473ffffffffffffffffffffffffffffffffffffffff16612bbb565b156127fa578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161268095949392919061395e565b602060405180830381600087803b15801561269a57600080fd5b505af19250505080156126cb57506040513d601f19601f820116820180604052508101906126c89190613426565b60015b612771576126d76140a1565b806308c379a0141561273457506126ec61461e565b806126f75750612736565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b9190613a2c565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276890613c6e565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146127f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ef90613a4e565b60405180910390fd5b505b505050505050565b6128218473ffffffffffffffffffffffffffffffffffffffff16612bbb565b156129e1578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016128679594939291906138f6565b602060405180830381600087803b15801561288157600080fd5b505af19250505080156128b257506040513d601f19601f820116820180604052508101906128af9190613426565b60015b612958576128be6140a1565b806308c379a0141561291b57506128d361461e565b806128de575061291d565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129129190613a2c565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294f90613c6e565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d690613a4e565b60405180910390fd5b505b505050505050565b6129f7868686868686612bde565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612aa95760005b8351811015612aa757828181518110612a4b57612a4a614043565b5b602002602001015160036000868481518110612a6a57612a69614043565b5b602002602001015181526020019081526020016000206000828254612a8f9190613e2d565b9250508190555080612aa090613f9c565b9050612a2f565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bb35760005b8351811015612bb1576000848281518110612aff57612afe614043565b5b602002602001015190506000848381518110612b1e57612b1d614043565b5b6020026020010151905060006003600084815260200190815260200160002054905081811015612b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7a90613bce565b60405180910390fd5b818103600360008581526020019081526020016000208190555050505080612baa90613f9c565b9050612ae1565b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050505050565b828054612bf290613f39565b90600052602060002090601f016020900481019282612c145760008555612c5b565b82601f10612c2d57805160ff1916838001178555612c5b565b82800160010185558215612c5b579182015b82811115612c5a578251825591602001919060010190612c3f565b5b509050612c689190612c6c565b5090565b5b80821115612c85576000816000905550600101612c6d565b5090565b6000612c9c612c9784613cf7565b613cd2565b90508083825260208201905082856020860282011115612cbf57612cbe6140cd565b5b60005b85811015612cef5781612cd58882612ded565b845260208401935060208301925050600181019050612cc2565b5050509392505050565b6000612d0c612d0784613d23565b613cd2565b90508083825260208201905082856020860282011115612d2f57612d2e6140cd565b5b60005b85811015612d5f5781612d458882612f4f565b845260208401935060208301925050600181019050612d32565b5050509392505050565b6000612d7c612d7784613d4f565b613cd2565b905082815260208101848484011115612d9857612d976140d2565b5b612da3848285613ef7565b509392505050565b6000612dbe612db984613d80565b613cd2565b905082815260208101848484011115612dda57612dd96140d2565b5b612de5848285613ef7565b509392505050565b600081359050612dfc816146b4565b92915050565b60008083601f840112612e1857612e176140c8565b5b8235905067ffffffffffffffff811115612e3557612e346140c3565b5b602083019150836020820283011115612e5157612e506140cd565b5b9250929050565b600082601f830112612e6d57612e6c6140c8565b5b8135612e7d848260208601612c89565b91505092915050565b600082601f830112612e9b57612e9a6140c8565b5b8135612eab848260208601612cf9565b91505092915050565b600081359050612ec3816146cb565b92915050565b600081359050612ed8816146e2565b92915050565b600081519050612eed816146e2565b92915050565b600082601f830112612f0857612f076140c8565b5b8135612f18848260208601612d69565b91505092915050565b600082601f830112612f3657612f356140c8565b5b8135612f46848260208601612dab565b91505092915050565b600081359050612f5e816146f9565b92915050565b600060208284031215612f7a57612f796140dc565b5b6000612f8884828501612ded565b91505092915050565b60008060408385031215612fa857612fa76140dc565b5b6000612fb685828601612ded565b9250506020612fc785828601612ded565b9150509250929050565b600080600080600060a08688031215612fed57612fec6140dc565b5b6000612ffb88828901612ded565b955050602061300c88828901612ded565b945050604086013567ffffffffffffffff81111561302d5761302c6140d7565b5b61303988828901612e86565b935050606086013567ffffffffffffffff81111561305a576130596140d7565b5b61306688828901612e86565b925050608086013567ffffffffffffffff811115613087576130866140d7565b5b61309388828901612ef3565b9150509295509295909350565b600080600080600060a086880312156130bc576130bb6140dc565b5b60006130ca88828901612ded565b95505060206130db88828901612ded565b94505060406130ec88828901612f4f565b93505060606130fd88828901612f4f565b925050608086013567ffffffffffffffff81111561311e5761311d6140d7565b5b61312a88828901612ef3565b9150509295509295909350565b6000806000606084860312156131505761314f6140dc565b5b600061315e86828701612ded565b935050602084013567ffffffffffffffff81111561317f5761317e6140d7565b5b61318b86828701612e86565b925050604084013567ffffffffffffffff8111156131ac576131ab6140d7565b5b6131b886828701612e86565b9150509250925092565b600080604083850312156131d9576131d86140dc565b5b60006131e785828601612ded565b92505060206131f885828601612eb4565b9150509250929050565b60008060408385031215613219576132186140dc565b5b600061322785828601612ded565b925050602061323885828601612f4f565b9150509250929050565b60008060006060848603121561325b5761325a6140dc565b5b600061326986828701612ded565b935050602061327a86828701612f4f565b925050604061328b86828701612f4f565b9150509250925092565b600080600080606085870312156132af576132ae6140dc565b5b600085013567ffffffffffffffff8111156132cd576132cc6140d7565b5b6132d987828801612e02565b945094505060206132ec87828801612f4f565b92505060406132fd87828801612f4f565b91505092959194509250565b600080604083850312156133205761331f6140dc565b5b600083013567ffffffffffffffff81111561333e5761333d6140d7565b5b61334a85828601612e58565b925050602083013567ffffffffffffffff81111561336b5761336a6140d7565b5b61337785828601612e86565b9150509250929050565b60008060408385031215613398576133976140dc565b5b600083013567ffffffffffffffff8111156133b6576133b56140d7565b5b6133c285828601612e86565b925050602083013567ffffffffffffffff8111156133e3576133e26140d7565b5b6133ef85828601612e86565b9150509250929050565b60006020828403121561340f5761340e6140dc565b5b600061341d84828501612ec9565b91505092915050565b60006020828403121561343c5761343b6140dc565b5b600061344a84828501612ede565b91505092915050565b600060208284031215613469576134686140dc565b5b600082013567ffffffffffffffff811115613487576134866140d7565b5b61349384828501612f21565b91505092915050565b6000602082840312156134b2576134b16140dc565b5b60006134c084828501612f4f565b91505092915050565b600080604083850312156134e0576134df6140dc565b5b60006134ee85828601612f4f565b92505060206134ff85828601612f4f565b9150509250929050565b600061351583836138a8565b60208301905092915050565b61352a81613e83565b82525050565b600061353b82613dc1565b6135458185613def565b935061355083613db1565b8060005b838110156135815781516135688882613509565b975061357383613de2565b925050600181019050613554565b5085935050505092915050565b61359781613e95565b82525050565b60006135a882613dcc565b6135b28185613e00565b93506135c2818560208601613f06565b6135cb816140e1565b840191505092915050565b60006135e182613dd7565b6135eb8185613e1c565b93506135fb818560208601613f06565b613604816140e1565b840191505092915050565b600061361c602883613e1c565b9150613627826140ff565b604082019050919050565b600061363f602683613e1c565b915061364a8261414e565b604082019050919050565b6000613662602483613e1c565b915061366d8261419d565b604082019050919050565b6000613685602a83613e1c565b9150613690826141ec565b604082019050919050565b60006136a8602e83613e1c565b91506136b38261423b565b604082019050919050565b60006136cb603a83613e1c565b91506136d68261428a565b604082019050919050565b60006136ee601d83613e1c565b91506136f9826142d9565b602082019050919050565b6000613711602583613e1c565b915061371c82614302565b604082019050919050565b6000613734601d83613e1c565b915061373f82614351565b602082019050919050565b6000613757602383613e1c565b91506137628261437a565b604082019050919050565b600061377a602a83613e1c565b9150613785826143c9565b604082019050919050565b600061379d602083613e1c565b91506137a882614418565b602082019050919050565b60006137c0602883613e1c565b91506137cb82614441565b604082019050919050565b60006137e3600083613e11565b91506137ee82614490565b600082019050919050565b6000613806602983613e1c565b915061381182614493565b604082019050919050565b6000613829602983613e1c565b9150613834826144e2565b604082019050919050565b600061384c602883613e1c565b915061385782614531565b604082019050919050565b600061386f602183613e1c565b915061387a82614580565b604082019050919050565b6000613892603483613e1c565b915061389d826145cf565b604082019050919050565b6138b181613eed565b82525050565b6138c081613eed565b82525050565b60006138d1826137d6565b9150819050919050565b60006020820190506138f06000830184613521565b92915050565b600060a08201905061390b6000830188613521565b6139186020830187613521565b818103604083015261392a8186613530565b9050818103606083015261393e8185613530565b90508181036080830152613952818461359d565b90509695505050505050565b600060a0820190506139736000830188613521565b6139806020830187613521565b61398d60408301866138b7565b61399a60608301856138b7565b81810360808301526139ac818461359d565b90509695505050505050565b600060208201905081810360008301526139d28184613530565b905092915050565b600060408201905081810360008301526139f48185613530565b90508181036020830152613a088184613530565b90509392505050565b6000602082019050613a26600083018461358e565b92915050565b60006020820190508181036000830152613a4681846135d6565b905092915050565b60006020820190508181036000830152613a678161360f565b9050919050565b60006020820190508181036000830152613a8781613632565b9050919050565b60006020820190508181036000830152613aa781613655565b9050919050565b60006020820190508181036000830152613ac781613678565b9050919050565b60006020820190508181036000830152613ae78161369b565b9050919050565b60006020820190508181036000830152613b07816136be565b9050919050565b60006020820190508181036000830152613b27816136e1565b9050919050565b60006020820190508181036000830152613b4781613704565b9050919050565b60006020820190508181036000830152613b6781613727565b9050919050565b60006020820190508181036000830152613b878161374a565b9050919050565b60006020820190508181036000830152613ba78161376d565b9050919050565b60006020820190508181036000830152613bc781613790565b9050919050565b60006020820190508181036000830152613be7816137b3565b9050919050565b60006020820190508181036000830152613c07816137f9565b9050919050565b60006020820190508181036000830152613c278161381c565b9050919050565b60006020820190508181036000830152613c478161383f565b9050919050565b60006020820190508181036000830152613c6781613862565b9050919050565b60006020820190508181036000830152613c8781613885565b9050919050565b6000602082019050613ca360008301846138b7565b92915050565b6000604082019050613cbe60008301856138b7565b613ccb60208301846138b7565b9392505050565b6000613cdc613ced565b9050613ce88282613f6b565b919050565b6000604051905090565b600067ffffffffffffffff821115613d1257613d11614072565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d3e57613d3d614072565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613d6a57613d69614072565b5b613d73826140e1565b9050602081019050919050565b600067ffffffffffffffff821115613d9b57613d9a614072565b5b613da4826140e1565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000613e3882613eed565b9150613e4383613eed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e7857613e77613fe5565b5b828201905092915050565b6000613e8e82613ecd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f24578082015181840152602081019050613f09565b83811115613f33576000848401525b50505050565b60006002820490506001821680613f5157607f821691505b60208210811415613f6557613f64614014565b5b50919050565b613f74826140e1565b810181811067ffffffffffffffff82111715613f9357613f92614072565b5b80604052505050565b6000613fa782613eed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fda57613fd9613fe5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156140c05760046000803e6140bd6000516140f2565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f596f75206d757374206861766520746865204d696e74657220726f6c65000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a206275726e20616d6f756e74206578636565647320746f7460008201527f616c537570706c79000000000000000000000000000000000000000000000000602082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b600060443d101561462e576146b1565b614636613ced565b60043d036004823e80513d602482011167ffffffffffffffff8211171561465e5750506146b1565b808201805167ffffffffffffffff81111561467c57505050506146b1565b80602083010160043d0385018111156146995750505050506146b1565b6146a882602001850186613f6b565b82955050505050505b90565b6146bd81613e83565b81146146c857600080fd5b50565b6146d481613e95565b81146146df57600080fd5b50565b6146eb81613ea1565b81146146f657600080fd5b50565b61470281613eed565b811461470d57600080fd5b5056fea2646970667358221220a521b52c003dc97a91b6b8151d739966002390047f9df71e782385494381131964736f6c63430008070033
Deployed Bytecode Sourcemap
43338:2671:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24499:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23522:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44709:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44860:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24243:105;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43990:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26442:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43460:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45507:152;;;:::i;:::-;;24895:524;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42120:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40804:358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2776:103;;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45199:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45001:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25492:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43687:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44436:213;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41909:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44177:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45326:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25719:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25959:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3034:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40470:326;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24499:230;24585:7;24632:1;24613:21;;:7;:21;;;;24605:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;24699:9;:13;24709:2;24699:13;;;;;;;;;;;:22;24713:7;24699:22;;;;;;;;;;;;;;;;24692:29;;24499:230;;;;:::o;23522:310::-;23624:4;23676:26;23661:41;;;:11;:41;;;;:110;;;;23734:37;23719:52;;;:11;:52;;;;23661:110;:163;;;;23788:36;23812:11;23788:23;:36::i;:::-;23661:163;23641:183;;23522:310;;;:::o;44709:92::-;43845:10;43828:27;;:13;;;;;;;;;;;:27;;;:52;;;;43870:10;43859:21;;:7;:5;:7::i;:::-;:21;;;43828:52;43820:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44777:16:::1;44785:7;44777;:16::i;:::-;44709:92:::0;:::o;44860:83::-;44897:13;44930:5;44923:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44860:83;:::o;24243:105::-;24303:13;24336:4;24329:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24243:105;;;:::o;43990:112::-;43845:10;43828:27;;:13;;;;;;;;;;;:27;;;:52;;;;43870:10;43859:21;;:7;:5;:7::i;:::-;:21;;;43828:52;43820:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44061:33:::1;44067:10;44079:2;44083:6;44061:33;;;;;;;;;;;::::0;:5:::1;:33::i;:::-;43990:112:::0;;:::o;26442:438::-;26683:12;:10;:12::i;:::-;26675:20;;:4;:20;;;:60;;;;26699:36;26716:4;26722:12;:10;:12::i;:::-;26699:16;:36::i;:::-;26675:60;26653:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;26820:52;26843:4;26849:2;26853:3;26858:7;26867:4;26820:22;:52::i;:::-;26442:438;;;;;:::o;43460:28::-;;;;;;;;;;;;;:::o;45507:152::-;2014:13;:11;:13::i;:::-;45557:15:::1;45575:21;45557:39;;45607:44;45633:7;:5;:7::i;:::-;45643;45607:17;:44::i;:::-;45546:113;45507:152::o:0;24895:524::-;25051:16;25112:3;:10;25093:8;:15;:29;25085:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;25181:30;25228:8;:15;25214:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25181:63;;25262:9;25257:122;25281:8;:15;25277:1;:19;25257:122;;;25337:30;25347:8;25356:1;25347:11;;;;;;;;:::i;:::-;;;;;;;;25360:3;25364:1;25360:6;;;;;;;;:::i;:::-;;;;;;;;25337:9;:30::i;:::-;25318:13;25332:1;25318:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;25298:3;;;;:::i;:::-;;;25257:122;;;;25398:13;25391:20;;;24895:524;;;;:::o;42120:122::-;42177:4;42233:1;42201:29;42227:2;42201:25;:29::i;:::-;:33;42194:40;;42120:122;;;:::o;40804:358::-;40980:12;:10;:12::i;:::-;40969:23;;:7;:23;;;:66;;;;40996:39;41013:7;41022:12;:10;:12::i;:::-;40996:16;:39::i;:::-;40969:66;40947:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;41122:32;41133:7;41142:3;41147:6;41122:10;:32::i;:::-;40804:358;;;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;45199:119::-;2014:13;:11;:13::i;:::-;45296:14:::1;45281:12;:29;;;;;;;;;;;;:::i;:::-;;45199:119:::0;:::o;45001:87::-;45040:13;45073:7;45066:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45001:87;:::o;25492:155::-;25587:52;25606:12;:10;:12::i;:::-;25620:8;25630;25587:18;:52::i;:::-;25492:155;;:::o;43687:97::-;2014:13;:11;:13::i;:::-;43770:6:::1;43754:13;;:22;;;;;;;;;;;;;;;;;;43687:97:::0;:::o;44436:213::-;43845:10;43828:27;;:13;;;;;;;;;;;:27;;;:52;;;;43870:10;43859:21;;:7;:5;:7::i;:::-;:21;;;43828:52;43820:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44541:6:::1;44536:106;44555:9;;:16;;44551:1;:20;44536:106;;;44593:37;44599:9;;44609:1;44599:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;44613:2;44617:8;44593:37;;;;;;;;;;;::::0;:5:::1;:37::i;:::-;44573:3;;;;;:::i;:::-;;;;44536:106;;;;44436:213:::0;;;;:::o;41909:113::-;41971:7;41998:12;:16;42011:2;41998:16;;;;;;;;;;;;41991:23;;41909:113;;;:::o;44177:169::-;43845:10;43828:27;;:13;;;;;;;;;;;:27;;;:52;;;;43870:10;43859:21;;:7;:5;:7::i;:::-;:21;;;43828:52;43820:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;44298:40:::1;44309:10;44321:3;44326:7;44298:40;;;;;;;;;;;::::0;:10:::1;:40::i;:::-;44177:169:::0;;:::o;45326:94::-;45370:13;45400:12;45393:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45326:94;:::o;25719:168::-;25818:4;25842:18;:27;25861:7;25842:27;;;;;;;;;;;;;;;:37;25870:8;25842:37;;;;;;;;;;;;;;;;;;;;;;;;;25835:44;;25719:168;;;;:::o;25959:406::-;26175:12;:10;:12::i;:::-;26167:20;;:4;:20;;;:60;;;;26191:36;26208:4;26214:12;:10;:12::i;:::-;26191:16;:36::i;:::-;26167:60;26145:156;;;;;;;;;;;;:::i;:::-;;;;;;;;;26312:45;26330:4;26336:2;26340;26344:6;26352:4;26312:17;:45::i;:::-;25959:406;;;;;:::o;3034:201::-;2014:13;:11;:13::i;:::-;3143:1:::1;3123:22;;:8;:22;;;;3115:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3199:28;3218:8;3199:18;:28::i;:::-;3034:201:::0;:::o;40470:326::-;40621:12;:10;:12::i;:::-;40610:23;;:7;:23;;;:66;;;;40637:39;40654:7;40663:12;:10;:12::i;:::-;40637:16;:39::i;:::-;40610:66;40588:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;40763:25;40769:7;40778:2;40782:5;40763;:25::i;:::-;40470:326;;;:::o;14803:157::-;14888:4;14927:25;14912:40;;;:11;:40;;;;14905:47;;14803:157;;;:::o;30666:88::-;30740:6;30733:4;:13;;;;;;;;;;;;:::i;:::-;;30666:88;:::o;31140:729::-;31307:1;31293:16;;:2;:16;;;;31285:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;31360:16;31379:12;:10;:12::i;:::-;31360:31;;31402:20;31425:21;31443:2;31425:17;:21::i;:::-;31402:44;;31457:24;31484:25;31502:6;31484:17;:25::i;:::-;31457:52;;31522:66;31543:8;31561:1;31565:2;31569:3;31574:7;31583:4;31522:20;:66::i;:::-;31622:6;31601:9;:13;31611:2;31601:13;;;;;;;;;;;:17;31615:2;31601:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;31681:2;31644:52;;31677:1;31644:52;;31659:8;31644:52;;;31685:2;31689:6;31644:52;;;;;;;:::i;:::-;;;;;;;;31709:65;31729:8;31747:1;31751:2;31755:3;31760:7;31769:4;31709:19;:65::i;:::-;31787:74;31818:8;31836:1;31840:2;31844;31848:6;31856:4;31787:30;:74::i;:::-;31274:595;;;31140:729;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;28676:1146::-;28903:7;:14;28889:3;:10;:28;28881:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;28995:1;28981:16;;:2;:16;;;;28973:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;29052:16;29071:12;:10;:12::i;:::-;29052:31;;29096:60;29117:8;29127:4;29133:2;29137:3;29142:7;29151:4;29096:20;:60::i;:::-;29174:9;29169:421;29193:3;:10;29189:1;:14;29169:421;;;29225:10;29238:3;29242:1;29238:6;;;;;;;;:::i;:::-;;;;;;;;29225:19;;29259:14;29276:7;29284:1;29276:10;;;;;;;;:::i;:::-;;;;;;;;29259:27;;29303:19;29325:9;:13;29335:2;29325:13;;;;;;;;;;;:19;29339:4;29325:19;;;;;;;;;;;;;;;;29303:41;;29382:6;29367:11;:21;;29359:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;29515:6;29501:11;:20;29479:9;:13;29489:2;29479:13;;;;;;;;;;;:19;29493:4;29479:19;;;;;;;;;;;;;;;:42;;;;29572:6;29551:9;:13;29561:2;29551:13;;;;;;;;;;;:17;29565:2;29551:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;29210:380;;;29205:3;;;;:::i;:::-;;;29169:421;;;;29637:2;29607:47;;29631:4;29607:47;;29621:8;29607:47;;;29641:3;29646:7;29607:47;;;;;;;:::i;:::-;;;;;;;;29667:59;29687:8;29697:4;29703:2;29707:3;29712:7;29721:4;29667:19;:59::i;:::-;29739:75;29775:8;29785:4;29791:2;29795:3;29800:7;29809:4;29739:35;:75::i;:::-;28870:952;28676:1146;;;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;6087:317::-;6202:6;6177:21;:31;;6169:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6256:12;6274:9;:14;;6296:6;6274:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6255:52;;;6326:7;6318:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;6158:246;6087:317;;:::o;34441:969::-;34609:1;34593:18;;:4;:18;;;;34585:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;34684:7;:14;34670:3;:10;:28;34662:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34756:16;34775:12;:10;:12::i;:::-;34756:31;;34800:66;34821:8;34831:4;34845:1;34849:3;34854:7;34800:66;;;;;;;;;;;;:20;:66::i;:::-;34884:9;34879:373;34903:3;:10;34899:1;:14;34879:373;;;34935:10;34948:3;34952:1;34948:6;;;;;;;;:::i;:::-;;;;;;;;34935:19;;34969:14;34986:7;34994:1;34986:10;;;;;;;;:::i;:::-;;;;;;;;34969:27;;35013:19;35035:9;:13;35045:2;35035:13;;;;;;;;;;;:19;35049:4;35035:19;;;;;;;;;;;;;;;;35013:41;;35092:6;35077:11;:21;;35069:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;35219:6;35205:11;:20;35183:9;:13;35193:2;35183:13;;;;;;;;;;;:19;35197:4;35183:19;;;;;;;;;;;;;;;:42;;;;34920:332;;;34915:3;;;;;:::i;:::-;;;;34879:373;;;;35307:1;35269:55;;35293:4;35269:55;;35283:8;35269:55;;;35311:3;35316:7;35269:55;;;;;;;:::i;:::-;;;;;;;;35337:65;35357:8;35367:4;35381:1;35385:3;35390:7;35337:65;;;;;;;;;;;;:19;:65::i;:::-;34574:836;34441:969;;;:::o;3395:191::-;3469:16;3488:6;;;;;;;;;;;3469:25;;3514:8;3505:6;;:17;;;;;;;;;;;;;;;;;;3569:8;3538:40;;3559:8;3538:40;;;;;;;;;;;;3458:128;3395:191;:::o;35553:331::-;35708:8;35699:17;;:5;:17;;;;35691:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35811:8;35773:18;:25;35792:5;35773:25;;;;;;;;;;;;;;;:35;35799:8;35773:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35857:8;35835:41;;35850:5;35835:41;;;35867:8;35835:41;;;;;;:::i;:::-;;;;;;;;35553:331;;;:::o;32272:813::-;32464:1;32450:16;;:2;:16;;;;32442:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;32537:7;:14;32523:3;:10;:28;32515:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;32609:16;32628:12;:10;:12::i;:::-;32609:31;;32653:66;32674:8;32692:1;32696:2;32700:3;32705:7;32714:4;32653:20;:66::i;:::-;32737:9;32732:103;32756:3;:10;32752:1;:14;32732:103;;;32813:7;32821:1;32813:10;;;;;;;;:::i;:::-;;;;;;;;32788:9;:17;32798:3;32802:1;32798:6;;;;;;;;:::i;:::-;;;;;;;;32788:17;;;;;;;;;;;:21;32806:2;32788:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;32768:3;;;;;:::i;:::-;;;;32732:103;;;;32888:2;32852:53;;32884:1;32852:53;;32866:8;32852:53;;;32892:3;32897:7;32852:53;;;;;;;:::i;:::-;;;;;;;;32918:65;32938:8;32956:1;32960:2;32964:3;32969:7;32978:4;32918:19;:65::i;:::-;32996:81;33032:8;33050:1;33054:2;33058:3;33063:7;33072:4;32996:35;:81::i;:::-;32431:654;32272:813;;;;:::o;27344:974::-;27546:1;27532:16;;:2;:16;;;;27524:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;27603:16;27622:12;:10;:12::i;:::-;27603:31;;27645:20;27668:21;27686:2;27668:17;:21::i;:::-;27645:44;;27700:24;27727:25;27745:6;27727:17;:25::i;:::-;27700:52;;27765:60;27786:8;27796:4;27802:2;27806:3;27811:7;27820:4;27765:20;:60::i;:::-;27838:19;27860:9;:13;27870:2;27860:13;;;;;;;;;;;:19;27874:4;27860:19;;;;;;;;;;;;;;;;27838:41;;27913:6;27898:11;:21;;27890:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;28038:6;28024:11;:20;28002:9;:13;28012:2;28002:13;;;;;;;;;;;:19;28016:4;28002:19;;;;;;;;;;;;;;;:42;;;;28087:6;28066:9;:13;28076:2;28066:13;;;;;;;;;;;:17;28080:2;28066:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;28142:2;28111:46;;28136:4;28111:46;;28126:8;28111:46;;;28146:2;28150:6;28111:46;;;;;;;:::i;:::-;;;;;;;;28170:59;28190:8;28200:4;28206:2;28210:3;28215:7;28224:4;28170:19;:59::i;:::-;28242:68;28273:8;28283:4;28289:2;28293;28297:6;28305:4;28242:30;:68::i;:::-;27513:805;;;;27344:974;;;;;:::o;33383:808::-;33526:1;33510:18;;:4;:18;;;;33502:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;33581:16;33600:12;:10;:12::i;:::-;33581:31;;33623:20;33646:21;33664:2;33646:17;:21::i;:::-;33623:44;;33678:24;33705:25;33723:6;33705:17;:25::i;:::-;33678:52;;33743:66;33764:8;33774:4;33788:1;33792:3;33797:7;33743:66;;;;;;;;;;;;:20;:66::i;:::-;33822:19;33844:9;:13;33854:2;33844:13;;;;;;;;;;;:19;33858:4;33844:19;;;;;;;;;;;;;;;;33822:41;;33897:6;33882:11;:21;;33874:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;34016:6;34002:11;:20;33980:9;:13;33990:2;33980:13;;;;;;;;;;;:19;33994:4;33980:19;;;;;;;;;;;;;;;:42;;;;34090:1;34051:54;;34076:4;34051:54;;34066:8;34051:54;;;34094:2;34098:6;34051:54;;;;;;;:::i;:::-;;;;;;;;34118:65;34138:8;34148:4;34162:1;34166:3;34171:7;34118:65;;;;;;;;;;;;:19;:65::i;:::-;33491:700;;;;33383:808;;;:::o;39819:198::-;39885:16;39914:22;39953:1;39939:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39914:41;;39977:7;39966:5;39972:1;39966:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;40004:5;39997:12;;;39819:198;;;:::o;45667:337::-;45930:66;45957:8;45967:4;45973:2;45977:3;45982:7;45991:4;45930:26;:66::i;:::-;45667:337;;;;;;:::o;38018:220::-;;;;;;;:::o;38246:744::-;38461:15;:2;:13;;;:15::i;:::-;38457:526;;;38514:2;38497:38;;;38536:8;38546:4;38552:2;38556:6;38564:4;38497:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38493:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;38845:6;38838:14;;;;;;;;;;;:::i;:::-;;;;;;;;38493:479;;;38894:62;;;;;;;;;;:::i;:::-;;;;;;;;38493:479;38631:43;;;38619:55;;;:8;:55;;;;38615:154;;38699:50;;;;;;;;;;:::i;:::-;;;;;;;;38615:154;38570:214;38457:526;38246:744;;;;;;:::o;38998:813::-;39238:15;:2;:13;;;:15::i;:::-;39234:570;;;39291:2;39274:43;;;39318:8;39328:4;39334:3;39339:7;39348:4;39274:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39270:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;39666:6;39659:14;;;;;;;;;;;:::i;:::-;;;;;;;;39270:523;;;39715:62;;;;;;;;;;:::i;:::-;;;;;;;;39270:523;39447:48;;;39435:60;;;:8;:60;;;;39431:159;;39520:50;;;;;;;;;;:::i;:::-;;;;;;;;39431:159;39354:251;39234:570;38998:813;;;;;;:::o;42317:931::-;42556:66;42583:8;42593:4;42599:2;42603:3;42608:7;42617:4;42556:26;:66::i;:::-;42655:1;42639:18;;:4;:18;;;42635:160;;;42679:9;42674:110;42698:3;:10;42694:1;:14;42674:110;;;42758:7;42766:1;42758:10;;;;;;;;:::i;:::-;;;;;;;;42734:12;:20;42747:3;42751:1;42747:6;;;;;;;;:::i;:::-;;;;;;;;42734:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;42710:3;;;;:::i;:::-;;;42674:110;;;;42635:160;42825:1;42811:16;;:2;:16;;;42807:434;;;42849:9;42844:386;42868:3;:10;42864:1;:14;42844:386;;;42904:10;42917:3;42921:1;42917:6;;;;;;;;:::i;:::-;;;;;;;;42904:19;;42942:14;42959:7;42967:1;42959:10;;;;;;;;:::i;:::-;;;;;;;;42942:27;;42988:14;43005:12;:16;43018:2;43005:16;;;;;;;;;;;;42988:33;;43058:6;43048;:16;;43040:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43189:6;43180;:15;43161:12;:16;43174:2;43161:16;;;;;;;;;;;:34;;;;42885:345;;;42880:3;;;;:::i;:::-;;;42844:386;;;;42807:434;42317:931;;;;;;:::o;4826:326::-;4886:4;5143:1;5121:7;:19;;;:23;5114:30;;4826:326;;;:::o;36842:221::-;;;;;;;:::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:568::-;2566:8;2576:6;2626:3;2619:4;2611:6;2607:17;2603:27;2593:122;;2634:79;;:::i;:::-;2593:122;2747:6;2734:20;2724:30;;2777:18;2769:6;2766:30;2763:117;;;2799:79;;:::i;:::-;2763:117;2913:4;2905:6;2901:17;2889:29;;2967:3;2959:4;2951:6;2947:17;2937:8;2933:32;2930:41;2927:128;;;2974:79;;:::i;:::-;2927:128;2493:568;;;;;:::o;3084:370::-;3155:5;3204:3;3197:4;3189:6;3185:17;3181:27;3171:122;;3212:79;;:::i;:::-;3171:122;3329:6;3316:20;3354:94;3444:3;3436:6;3429:4;3421:6;3417:17;3354:94;:::i;:::-;3345:103;;3161:293;3084:370;;;;:::o;3477:::-;3548:5;3597:3;3590:4;3582:6;3578:17;3574:27;3564:122;;3605:79;;:::i;:::-;3564:122;3722:6;3709:20;3747:94;3837:3;3829:6;3822:4;3814:6;3810:17;3747:94;:::i;:::-;3738:103;;3554:293;3477:370;;;;:::o;3853:133::-;3896:5;3934:6;3921:20;3912:29;;3950:30;3974:5;3950:30;:::i;:::-;3853:133;;;;:::o;3992:137::-;4037:5;4075:6;4062:20;4053:29;;4091:32;4117:5;4091:32;:::i;:::-;3992:137;;;;:::o;4135:141::-;4191:5;4222:6;4216:13;4207:22;;4238:32;4264:5;4238:32;:::i;:::-;4135:141;;;;:::o;4295:338::-;4350:5;4399:3;4392:4;4384:6;4380:17;4376:27;4366:122;;4407:79;;:::i;:::-;4366:122;4524:6;4511:20;4549:78;4623:3;4615:6;4608:4;4600:6;4596:17;4549:78;:::i;:::-;4540:87;;4356:277;4295:338;;;;:::o;4653:340::-;4709:5;4758:3;4751:4;4743:6;4739:17;4735:27;4725:122;;4766:79;;:::i;:::-;4725:122;4883:6;4870:20;4908:79;4983:3;4975:6;4968:4;4960:6;4956:17;4908:79;:::i;:::-;4899:88;;4715:278;4653:340;;;;:::o;4999:139::-;5045:5;5083:6;5070:20;5061:29;;5099:33;5126:5;5099:33;:::i;:::-;4999:139;;;;:::o;5144:329::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:119;;;5258:79;;:::i;:::-;5220:119;5378:1;5403:53;5448:7;5439:6;5428:9;5424:22;5403:53;:::i;:::-;5393:63;;5349:117;5144:329;;;;:::o;5479:474::-;5547:6;5555;5604:2;5592:9;5583:7;5579:23;5575:32;5572:119;;;5610:79;;:::i;:::-;5572:119;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;5479:474;;;;;:::o;5959:1509::-;6113:6;6121;6129;6137;6145;6194:3;6182:9;6173:7;6169:23;6165:33;6162:120;;;6201:79;;:::i;:::-;6162:120;6321:1;6346:53;6391:7;6382:6;6371:9;6367:22;6346:53;:::i;:::-;6336:63;;6292:117;6448:2;6474:53;6519:7;6510:6;6499:9;6495:22;6474:53;:::i;:::-;6464:63;;6419:118;6604:2;6593:9;6589:18;6576:32;6635:18;6627:6;6624:30;6621:117;;;6657:79;;:::i;:::-;6621:117;6762:78;6832:7;6823:6;6812:9;6808:22;6762:78;:::i;:::-;6752:88;;6547:303;6917:2;6906:9;6902:18;6889:32;6948:18;6940:6;6937:30;6934:117;;;6970:79;;:::i;:::-;6934:117;7075:78;7145:7;7136:6;7125:9;7121:22;7075:78;:::i;:::-;7065:88;;6860:303;7230:3;7219:9;7215:19;7202:33;7262:18;7254:6;7251:30;7248:117;;;7284:79;;:::i;:::-;7248:117;7389:62;7443:7;7434:6;7423:9;7419:22;7389:62;:::i;:::-;7379:72;;7173:288;5959:1509;;;;;;;;:::o;7474:1089::-;7578:6;7586;7594;7602;7610;7659:3;7647:9;7638:7;7634:23;7630:33;7627:120;;;7666:79;;:::i;:::-;7627:120;7786:1;7811:53;7856:7;7847:6;7836:9;7832:22;7811:53;:::i;:::-;7801:63;;7757:117;7913:2;7939:53;7984:7;7975:6;7964:9;7960:22;7939:53;:::i;:::-;7929:63;;7884:118;8041:2;8067:53;8112:7;8103:6;8092:9;8088:22;8067:53;:::i;:::-;8057:63;;8012:118;8169:2;8195:53;8240:7;8231:6;8220:9;8216:22;8195:53;:::i;:::-;8185:63;;8140:118;8325:3;8314:9;8310:19;8297:33;8357:18;8349:6;8346:30;8343:117;;;8379:79;;:::i;:::-;8343:117;8484:62;8538:7;8529:6;8518:9;8514:22;8484:62;:::i;:::-;8474:72;;8268:288;7474:1089;;;;;;;;:::o;8569:1039::-;8696:6;8704;8712;8761:2;8749:9;8740:7;8736:23;8732:32;8729:119;;;8767:79;;:::i;:::-;8729:119;8887:1;8912:53;8957:7;8948:6;8937:9;8933:22;8912:53;:::i;:::-;8902:63;;8858:117;9042:2;9031:9;9027:18;9014:32;9073:18;9065:6;9062:30;9059:117;;;9095:79;;:::i;:::-;9059:117;9200:78;9270:7;9261:6;9250:9;9246:22;9200:78;:::i;:::-;9190:88;;8985:303;9355:2;9344:9;9340:18;9327:32;9386:18;9378:6;9375:30;9372:117;;;9408:79;;:::i;:::-;9372:117;9513:78;9583:7;9574:6;9563:9;9559:22;9513:78;:::i;:::-;9503:88;;9298:303;8569:1039;;;;;:::o;9614:468::-;9679:6;9687;9736:2;9724:9;9715:7;9711:23;9707:32;9704:119;;;9742:79;;:::i;:::-;9704:119;9862:1;9887:53;9932:7;9923:6;9912:9;9908:22;9887:53;:::i;:::-;9877:63;;9833:117;9989:2;10015:50;10057:7;10048:6;10037:9;10033:22;10015:50;:::i;:::-;10005:60;;9960:115;9614:468;;;;;:::o;10088:474::-;10156:6;10164;10213:2;10201:9;10192:7;10188:23;10184:32;10181:119;;;10219:79;;:::i;:::-;10181:119;10339:1;10364:53;10409:7;10400:6;10389:9;10385:22;10364:53;:::i;:::-;10354:63;;10310:117;10466:2;10492:53;10537:7;10528:6;10517:9;10513:22;10492:53;:::i;:::-;10482:63;;10437:118;10088:474;;;;;:::o;10568:619::-;10645:6;10653;10661;10710:2;10698:9;10689:7;10685:23;10681:32;10678:119;;;10716:79;;:::i;:::-;10678:119;10836:1;10861:53;10906:7;10897:6;10886:9;10882:22;10861:53;:::i;:::-;10851:63;;10807:117;10963:2;10989:53;11034:7;11025:6;11014:9;11010:22;10989:53;:::i;:::-;10979:63;;10934:118;11091:2;11117:53;11162:7;11153:6;11142:9;11138:22;11117:53;:::i;:::-;11107:63;;11062:118;10568:619;;;;;:::o;11193:849::-;11297:6;11305;11313;11321;11370:2;11358:9;11349:7;11345:23;11341:32;11338:119;;;11376:79;;:::i;:::-;11338:119;11524:1;11513:9;11509:17;11496:31;11554:18;11546:6;11543:30;11540:117;;;11576:79;;:::i;:::-;11540:117;11689:80;11761:7;11752:6;11741:9;11737:22;11689:80;:::i;:::-;11671:98;;;;11467:312;11818:2;11844:53;11889:7;11880:6;11869:9;11865:22;11844:53;:::i;:::-;11834:63;;11789:118;11946:2;11972:53;12017:7;12008:6;11997:9;11993:22;11972:53;:::i;:::-;11962:63;;11917:118;11193:849;;;;;;;:::o;12048:894::-;12166:6;12174;12223:2;12211:9;12202:7;12198:23;12194:32;12191:119;;;12229:79;;:::i;:::-;12191:119;12377:1;12366:9;12362:17;12349:31;12407:18;12399:6;12396:30;12393:117;;;12429:79;;:::i;:::-;12393:117;12534:78;12604:7;12595:6;12584:9;12580:22;12534:78;:::i;:::-;12524:88;;12320:302;12689:2;12678:9;12674:18;12661:32;12720:18;12712:6;12709:30;12706:117;;;12742:79;;:::i;:::-;12706:117;12847:78;12917:7;12908:6;12897:9;12893:22;12847:78;:::i;:::-;12837:88;;12632:303;12048:894;;;;;:::o;12948:::-;13066:6;13074;13123:2;13111:9;13102:7;13098:23;13094:32;13091:119;;;13129:79;;:::i;:::-;13091:119;13277:1;13266:9;13262:17;13249:31;13307:18;13299:6;13296:30;13293:117;;;13329:79;;:::i;:::-;13293:117;13434:78;13504:7;13495:6;13484:9;13480:22;13434:78;:::i;:::-;13424:88;;13220:302;13589:2;13578:9;13574:18;13561:32;13620:18;13612:6;13609:30;13606:117;;;13642:79;;:::i;:::-;13606:117;13747:78;13817:7;13808:6;13797:9;13793:22;13747:78;:::i;:::-;13737:88;;13532:303;12948:894;;;;;:::o;13848:327::-;13906:6;13955:2;13943:9;13934:7;13930:23;13926:32;13923:119;;;13961:79;;:::i;:::-;13923:119;14081:1;14106:52;14150:7;14141:6;14130:9;14126:22;14106:52;:::i;:::-;14096:62;;14052:116;13848:327;;;;:::o;14181:349::-;14250:6;14299:2;14287:9;14278:7;14274:23;14270:32;14267:119;;;14305:79;;:::i;:::-;14267:119;14425:1;14450:63;14505:7;14496:6;14485:9;14481:22;14450:63;:::i;:::-;14440:73;;14396:127;14181:349;;;;:::o;14536:509::-;14605:6;14654:2;14642:9;14633:7;14629:23;14625:32;14622:119;;;14660:79;;:::i;:::-;14622:119;14808:1;14797:9;14793:17;14780:31;14838:18;14830:6;14827:30;14824:117;;;14860:79;;:::i;:::-;14824:117;14965:63;15020:7;15011:6;15000:9;14996:22;14965:63;:::i;:::-;14955:73;;14751:287;14536:509;;;;:::o;15051:329::-;15110:6;15159:2;15147:9;15138:7;15134:23;15130:32;15127:119;;;15165:79;;:::i;:::-;15127:119;15285:1;15310:53;15355:7;15346:6;15335:9;15331:22;15310:53;:::i;:::-;15300:63;;15256:117;15051:329;;;;:::o;15386:474::-;15454:6;15462;15511:2;15499:9;15490:7;15486:23;15482:32;15479:119;;;15517:79;;:::i;:::-;15479:119;15637:1;15662:53;15707:7;15698:6;15687:9;15683:22;15662:53;:::i;:::-;15652:63;;15608:117;15764:2;15790:53;15835:7;15826:6;15815:9;15811:22;15790:53;:::i;:::-;15780:63;;15735:118;15386:474;;;;;:::o;15866:179::-;15935:10;15956:46;15998:3;15990:6;15956:46;:::i;:::-;16034:4;16029:3;16025:14;16011:28;;15866:179;;;;:::o;16051:118::-;16138:24;16156:5;16138:24;:::i;:::-;16133:3;16126:37;16051:118;;:::o;16205:732::-;16324:3;16353:54;16401:5;16353:54;:::i;:::-;16423:86;16502:6;16497:3;16423:86;:::i;:::-;16416:93;;16533:56;16583:5;16533:56;:::i;:::-;16612:7;16643:1;16628:284;16653:6;16650:1;16647:13;16628:284;;;16729:6;16723:13;16756:63;16815:3;16800:13;16756:63;:::i;:::-;16749:70;;16842:60;16895:6;16842:60;:::i;:::-;16832:70;;16688:224;16675:1;16672;16668:9;16663:14;;16628:284;;;16632:14;16928:3;16921:10;;16329:608;;;16205:732;;;;:::o;16943:109::-;17024:21;17039:5;17024:21;:::i;:::-;17019:3;17012:34;16943:109;;:::o;17058:360::-;17144:3;17172:38;17204:5;17172:38;:::i;:::-;17226:70;17289:6;17284:3;17226:70;:::i;:::-;17219:77;;17305:52;17350:6;17345:3;17338:4;17331:5;17327:16;17305:52;:::i;:::-;17382:29;17404:6;17382:29;:::i;:::-;17377:3;17373:39;17366:46;;17148:270;17058:360;;;;:::o;17424:364::-;17512:3;17540:39;17573:5;17540:39;:::i;:::-;17595:71;17659:6;17654:3;17595:71;:::i;:::-;17588:78;;17675:52;17720:6;17715:3;17708:4;17701:5;17697:16;17675:52;:::i;:::-;17752:29;17774:6;17752:29;:::i;:::-;17747:3;17743:39;17736:46;;17516:272;17424:364;;;;:::o;17794:366::-;17936:3;17957:67;18021:2;18016:3;17957:67;:::i;:::-;17950:74;;18033:93;18122:3;18033:93;:::i;:::-;18151:2;18146:3;18142:12;18135:19;;17794:366;;;:::o;18166:::-;18308:3;18329:67;18393:2;18388:3;18329:67;:::i;:::-;18322:74;;18405:93;18494:3;18405:93;:::i;:::-;18523:2;18518:3;18514:12;18507:19;;18166:366;;;:::o;18538:::-;18680:3;18701:67;18765:2;18760:3;18701:67;:::i;:::-;18694:74;;18777:93;18866:3;18777:93;:::i;:::-;18895:2;18890:3;18886:12;18879:19;;18538:366;;;:::o;18910:::-;19052:3;19073:67;19137:2;19132:3;19073:67;:::i;:::-;19066:74;;19149:93;19238:3;19149:93;:::i;:::-;19267:2;19262:3;19258:12;19251:19;;18910:366;;;:::o;19282:::-;19424:3;19445:67;19509:2;19504:3;19445:67;:::i;:::-;19438:74;;19521:93;19610:3;19521:93;:::i;:::-;19639:2;19634:3;19630:12;19623:19;;19282:366;;;:::o;19654:::-;19796:3;19817:67;19881:2;19876:3;19817:67;:::i;:::-;19810:74;;19893:93;19982:3;19893:93;:::i;:::-;20011:2;20006:3;20002:12;19995:19;;19654:366;;;:::o;20026:::-;20168:3;20189:67;20253:2;20248:3;20189:67;:::i;:::-;20182:74;;20265:93;20354:3;20265:93;:::i;:::-;20383:2;20378:3;20374:12;20367:19;;20026:366;;;:::o;20398:::-;20540:3;20561:67;20625:2;20620:3;20561:67;:::i;:::-;20554:74;;20637:93;20726:3;20637:93;:::i;:::-;20755:2;20750:3;20746:12;20739:19;;20398:366;;;:::o;20770:::-;20912:3;20933:67;20997:2;20992:3;20933:67;:::i;:::-;20926:74;;21009:93;21098:3;21009:93;:::i;:::-;21127:2;21122:3;21118:12;21111:19;;20770:366;;;:::o;21142:::-;21284:3;21305:67;21369:2;21364:3;21305:67;:::i;:::-;21298:74;;21381:93;21470:3;21381:93;:::i;:::-;21499:2;21494:3;21490:12;21483:19;;21142:366;;;:::o;21514:::-;21656:3;21677:67;21741:2;21736:3;21677:67;:::i;:::-;21670:74;;21753:93;21842:3;21753:93;:::i;:::-;21871:2;21866:3;21862:12;21855:19;;21514:366;;;:::o;21886:::-;22028:3;22049:67;22113:2;22108:3;22049:67;:::i;:::-;22042:74;;22125:93;22214:3;22125:93;:::i;:::-;22243:2;22238:3;22234:12;22227:19;;21886:366;;;:::o;22258:::-;22400:3;22421:67;22485:2;22480:3;22421:67;:::i;:::-;22414:74;;22497:93;22586:3;22497:93;:::i;:::-;22615:2;22610:3;22606:12;22599:19;;22258:366;;;:::o;22630:398::-;22789:3;22810:83;22891:1;22886:3;22810:83;:::i;:::-;22803:90;;22902:93;22991:3;22902:93;:::i;:::-;23020:1;23015:3;23011:11;23004:18;;22630:398;;;:::o;23034:366::-;23176:3;23197:67;23261:2;23256:3;23197:67;:::i;:::-;23190:74;;23273:93;23362:3;23273:93;:::i;:::-;23391:2;23386:3;23382:12;23375:19;;23034:366;;;:::o;23406:::-;23548:3;23569:67;23633:2;23628:3;23569:67;:::i;:::-;23562:74;;23645:93;23734:3;23645:93;:::i;:::-;23763:2;23758:3;23754:12;23747:19;;23406:366;;;:::o;23778:::-;23920:3;23941:67;24005:2;24000:3;23941:67;:::i;:::-;23934:74;;24017:93;24106:3;24017:93;:::i;:::-;24135:2;24130:3;24126:12;24119:19;;23778:366;;;:::o;24150:::-;24292:3;24313:67;24377:2;24372:3;24313:67;:::i;:::-;24306:74;;24389:93;24478:3;24389:93;:::i;:::-;24507:2;24502:3;24498:12;24491:19;;24150:366;;;:::o;24522:::-;24664:3;24685:67;24749:2;24744:3;24685:67;:::i;:::-;24678:74;;24761:93;24850:3;24761:93;:::i;:::-;24879:2;24874:3;24870:12;24863:19;;24522:366;;;:::o;24894:108::-;24971:24;24989:5;24971:24;:::i;:::-;24966:3;24959:37;24894:108;;:::o;25008:118::-;25095:24;25113:5;25095:24;:::i;:::-;25090:3;25083:37;25008:118;;:::o;25132:379::-;25316:3;25338:147;25481:3;25338:147;:::i;:::-;25331:154;;25502:3;25495:10;;25132:379;;;:::o;25517:222::-;25610:4;25648:2;25637:9;25633:18;25625:26;;25661:71;25729:1;25718:9;25714:17;25705:6;25661:71;:::i;:::-;25517:222;;;;:::o;25745:1053::-;26068:4;26106:3;26095:9;26091:19;26083:27;;26120:71;26188:1;26177:9;26173:17;26164:6;26120:71;:::i;:::-;26201:72;26269:2;26258:9;26254:18;26245:6;26201:72;:::i;:::-;26320:9;26314:4;26310:20;26305:2;26294:9;26290:18;26283:48;26348:108;26451:4;26442:6;26348:108;:::i;:::-;26340:116;;26503:9;26497:4;26493:20;26488:2;26477:9;26473:18;26466:48;26531:108;26634:4;26625:6;26531:108;:::i;:::-;26523:116;;26687:9;26681:4;26677:20;26671:3;26660:9;26656:19;26649:49;26715:76;26786:4;26777:6;26715:76;:::i;:::-;26707:84;;25745:1053;;;;;;;;:::o;26804:751::-;27027:4;27065:3;27054:9;27050:19;27042:27;;27079:71;27147:1;27136:9;27132:17;27123:6;27079:71;:::i;:::-;27160:72;27228:2;27217:9;27213:18;27204:6;27160:72;:::i;:::-;27242;27310:2;27299:9;27295:18;27286:6;27242:72;:::i;:::-;27324;27392:2;27381:9;27377:18;27368:6;27324:72;:::i;:::-;27444:9;27438:4;27434:20;27428:3;27417:9;27413:19;27406:49;27472:76;27543:4;27534:6;27472:76;:::i;:::-;27464:84;;26804:751;;;;;;;;:::o;27561:373::-;27704:4;27742:2;27731:9;27727:18;27719:26;;27791:9;27785:4;27781:20;27777:1;27766:9;27762:17;27755:47;27819:108;27922:4;27913:6;27819:108;:::i;:::-;27811:116;;27561:373;;;;:::o;27940:634::-;28161:4;28199:2;28188:9;28184:18;28176:26;;28248:9;28242:4;28238:20;28234:1;28223:9;28219:17;28212:47;28276:108;28379:4;28370:6;28276:108;:::i;:::-;28268:116;;28431:9;28425:4;28421:20;28416:2;28405:9;28401:18;28394:48;28459:108;28562:4;28553:6;28459:108;:::i;:::-;28451:116;;27940:634;;;;;:::o;28580:210::-;28667:4;28705:2;28694:9;28690:18;28682:26;;28718:65;28780:1;28769:9;28765:17;28756:6;28718:65;:::i;:::-;28580:210;;;;:::o;28796:313::-;28909:4;28947:2;28936:9;28932:18;28924:26;;28996:9;28990:4;28986:20;28982:1;28971:9;28967:17;28960:47;29024:78;29097:4;29088:6;29024:78;:::i;:::-;29016:86;;28796:313;;;;:::o;29115:419::-;29281:4;29319:2;29308:9;29304:18;29296:26;;29368:9;29362:4;29358:20;29354:1;29343:9;29339:17;29332:47;29396:131;29522:4;29396:131;:::i;:::-;29388:139;;29115:419;;;:::o;29540:::-;29706:4;29744:2;29733:9;29729:18;29721:26;;29793:9;29787:4;29783:20;29779:1;29768:9;29764:17;29757:47;29821:131;29947:4;29821:131;:::i;:::-;29813:139;;29540:419;;;:::o;29965:::-;30131:4;30169:2;30158:9;30154:18;30146:26;;30218:9;30212:4;30208:20;30204:1;30193:9;30189:17;30182:47;30246:131;30372:4;30246:131;:::i;:::-;30238:139;;29965:419;;;:::o;30390:::-;30556:4;30594:2;30583:9;30579:18;30571:26;;30643:9;30637:4;30633:20;30629:1;30618:9;30614:17;30607:47;30671:131;30797:4;30671:131;:::i;:::-;30663:139;;30390:419;;;:::o;30815:::-;30981:4;31019:2;31008:9;31004:18;30996:26;;31068:9;31062:4;31058:20;31054:1;31043:9;31039:17;31032:47;31096:131;31222:4;31096:131;:::i;:::-;31088:139;;30815:419;;;:::o;31240:::-;31406:4;31444:2;31433:9;31429:18;31421:26;;31493:9;31487:4;31483:20;31479:1;31468:9;31464:17;31457:47;31521:131;31647:4;31521:131;:::i;:::-;31513:139;;31240:419;;;:::o;31665:::-;31831:4;31869:2;31858:9;31854:18;31846:26;;31918:9;31912:4;31908:20;31904:1;31893:9;31889:17;31882:47;31946:131;32072:4;31946:131;:::i;:::-;31938:139;;31665:419;;;:::o;32090:::-;32256:4;32294:2;32283:9;32279:18;32271:26;;32343:9;32337:4;32333:20;32329:1;32318:9;32314:17;32307:47;32371:131;32497:4;32371:131;:::i;:::-;32363:139;;32090:419;;;:::o;32515:::-;32681:4;32719:2;32708:9;32704:18;32696:26;;32768:9;32762:4;32758:20;32754:1;32743:9;32739:17;32732:47;32796:131;32922:4;32796:131;:::i;:::-;32788:139;;32515:419;;;:::o;32940:::-;33106:4;33144:2;33133:9;33129:18;33121:26;;33193:9;33187:4;33183:20;33179:1;33168:9;33164:17;33157:47;33221:131;33347:4;33221:131;:::i;:::-;33213:139;;32940:419;;;:::o;33365:::-;33531:4;33569:2;33558:9;33554:18;33546:26;;33618:9;33612:4;33608:20;33604:1;33593:9;33589:17;33582:47;33646:131;33772:4;33646:131;:::i;:::-;33638:139;;33365:419;;;:::o;33790:::-;33956:4;33994:2;33983:9;33979:18;33971:26;;34043:9;34037:4;34033:20;34029:1;34018:9;34014:17;34007:47;34071:131;34197:4;34071:131;:::i;:::-;34063:139;;33790:419;;;:::o;34215:::-;34381:4;34419:2;34408:9;34404:18;34396:26;;34468:9;34462:4;34458:20;34454:1;34443:9;34439:17;34432:47;34496:131;34622:4;34496:131;:::i;:::-;34488:139;;34215:419;;;:::o;34640:::-;34806:4;34844:2;34833:9;34829:18;34821:26;;34893:9;34887:4;34883:20;34879:1;34868:9;34864:17;34857:47;34921:131;35047:4;34921:131;:::i;:::-;34913:139;;34640:419;;;:::o;35065:::-;35231:4;35269:2;35258:9;35254:18;35246:26;;35318:9;35312:4;35308:20;35304:1;35293:9;35289:17;35282:47;35346:131;35472:4;35346:131;:::i;:::-;35338:139;;35065:419;;;:::o;35490:::-;35656:4;35694:2;35683:9;35679:18;35671:26;;35743:9;35737:4;35733:20;35729:1;35718:9;35714:17;35707:47;35771:131;35897:4;35771:131;:::i;:::-;35763:139;;35490:419;;;:::o;35915:::-;36081:4;36119:2;36108:9;36104:18;36096:26;;36168:9;36162:4;36158:20;36154:1;36143:9;36139:17;36132:47;36196:131;36322:4;36196:131;:::i;:::-;36188:139;;35915:419;;;:::o;36340:::-;36506:4;36544:2;36533:9;36529:18;36521:26;;36593:9;36587:4;36583:20;36579:1;36568:9;36564:17;36557:47;36621:131;36747:4;36621:131;:::i;:::-;36613:139;;36340:419;;;:::o;36765:222::-;36858:4;36896:2;36885:9;36881:18;36873:26;;36909:71;36977:1;36966:9;36962:17;36953:6;36909:71;:::i;:::-;36765:222;;;;:::o;36993:332::-;37114:4;37152:2;37141:9;37137:18;37129:26;;37165:71;37233:1;37222:9;37218:17;37209:6;37165:71;:::i;:::-;37246:72;37314:2;37303:9;37299:18;37290:6;37246:72;:::i;:::-;36993:332;;;;;:::o;37331:129::-;37365:6;37392:20;;:::i;:::-;37382:30;;37421:33;37449:4;37441:6;37421:33;:::i;:::-;37331:129;;;:::o;37466:75::-;37499:6;37532:2;37526:9;37516:19;;37466:75;:::o;37547:311::-;37624:4;37714:18;37706:6;37703:30;37700:56;;;37736:18;;:::i;:::-;37700:56;37786:4;37778:6;37774:17;37766:25;;37846:4;37840;37836:15;37828:23;;37547:311;;;:::o;37864:::-;37941:4;38031:18;38023:6;38020:30;38017:56;;;38053:18;;:::i;:::-;38017:56;38103:4;38095:6;38091:17;38083:25;;38163:4;38157;38153:15;38145:23;;37864:311;;;:::o;38181:307::-;38242:4;38332:18;38324:6;38321:30;38318:56;;;38354:18;;:::i;:::-;38318:56;38392:29;38414:6;38392:29;:::i;:::-;38384:37;;38476:4;38470;38466:15;38458:23;;38181:307;;;:::o;38494:308::-;38556:4;38646:18;38638:6;38635:30;38632:56;;;38668:18;;:::i;:::-;38632:56;38706:29;38728:6;38706:29;:::i;:::-;38698:37;;38790:4;38784;38780:15;38772:23;;38494:308;;;:::o;38808:132::-;38875:4;38898:3;38890:11;;38928:4;38923:3;38919:14;38911:22;;38808:132;;;:::o;38946:114::-;39013:6;39047:5;39041:12;39031:22;;38946:114;;;:::o;39066:98::-;39117:6;39151:5;39145:12;39135:22;;39066:98;;;:::o;39170:99::-;39222:6;39256:5;39250:12;39240:22;;39170:99;;;:::o;39275:113::-;39345:4;39377;39372:3;39368:14;39360:22;;39275:113;;;:::o;39394:184::-;39493:11;39527:6;39522:3;39515:19;39567:4;39562:3;39558:14;39543:29;;39394:184;;;;:::o;39584:168::-;39667:11;39701:6;39696:3;39689:19;39741:4;39736:3;39732:14;39717:29;;39584:168;;;;:::o;39758:147::-;39859:11;39896:3;39881:18;;39758:147;;;;:::o;39911:169::-;39995:11;40029:6;40024:3;40017:19;40069:4;40064:3;40060:14;40045:29;;39911:169;;;;:::o;40086:305::-;40126:3;40145:20;40163:1;40145:20;:::i;:::-;40140:25;;40179:20;40197:1;40179:20;:::i;:::-;40174:25;;40333:1;40265:66;40261:74;40258:1;40255:81;40252:107;;;40339:18;;:::i;:::-;40252:107;40383:1;40380;40376:9;40369:16;;40086:305;;;;:::o;40397:96::-;40434:7;40463:24;40481:5;40463:24;:::i;:::-;40452:35;;40397:96;;;:::o;40499:90::-;40533:7;40576:5;40569:13;40562:21;40551:32;;40499:90;;;:::o;40595:149::-;40631:7;40671:66;40664:5;40660:78;40649:89;;40595:149;;;:::o;40750:126::-;40787:7;40827:42;40820:5;40816:54;40805:65;;40750:126;;;:::o;40882:77::-;40919:7;40948:5;40937:16;;40882:77;;;:::o;40965:154::-;41049:6;41044:3;41039;41026:30;41111:1;41102:6;41097:3;41093:16;41086:27;40965:154;;;:::o;41125:307::-;41193:1;41203:113;41217:6;41214:1;41211:13;41203:113;;;41302:1;41297:3;41293:11;41287:18;41283:1;41278:3;41274:11;41267:39;41239:2;41236:1;41232:10;41227:15;;41203:113;;;41334:6;41331:1;41328:13;41325:101;;;41414:1;41405:6;41400:3;41396:16;41389:27;41325:101;41174:258;41125:307;;;:::o;41438:320::-;41482:6;41519:1;41513:4;41509:12;41499:22;;41566:1;41560:4;41556:12;41587:18;41577:81;;41643:4;41635:6;41631:17;41621:27;;41577:81;41705:2;41697:6;41694:14;41674:18;41671:38;41668:84;;;41724:18;;:::i;:::-;41668:84;41489:269;41438:320;;;:::o;41764:281::-;41847:27;41869:4;41847:27;:::i;:::-;41839:6;41835:40;41977:6;41965:10;41962:22;41941:18;41929:10;41926:34;41923:62;41920:88;;;41988:18;;:::i;:::-;41920:88;42028:10;42024:2;42017:22;41807:238;41764:281;;:::o;42051:233::-;42090:3;42113:24;42131:5;42113:24;:::i;:::-;42104:33;;42159:66;42152:5;42149:77;42146:103;;;42229:18;;:::i;:::-;42146:103;42276:1;42269:5;42265:13;42258:20;;42051:233;;;:::o;42290:180::-;42338:77;42335:1;42328:88;42435:4;42432:1;42425:15;42459:4;42456:1;42449:15;42476:180;42524:77;42521:1;42514:88;42621:4;42618:1;42611:15;42645:4;42642:1;42635:15;42662:180;42710:77;42707:1;42700:88;42807:4;42804:1;42797:15;42831:4;42828:1;42821:15;42848:180;42896:77;42893:1;42886:88;42993:4;42990:1;42983:15;43017:4;43014:1;43007:15;43034:183;43069:3;43107:1;43089:16;43086:23;43083:128;;;43145:1;43142;43139;43124:23;43167:34;43198:1;43192:8;43167:34;:::i;:::-;43160:41;;43083:128;43034:183;:::o;43223:117::-;43332:1;43329;43322:12;43346:117;43455:1;43452;43445:12;43469:117;43578:1;43575;43568:12;43592:117;43701:1;43698;43691:12;43715:117;43824:1;43821;43814:12;43838:117;43947:1;43944;43937:12;43961:102;44002:6;44053:2;44049:7;44044:2;44037:5;44033:14;44029:28;44019:38;;43961:102;;;:::o;44069:106::-;44113:8;44162:5;44157:3;44153:15;44132:36;;44069:106;;;:::o;44181:227::-;44321:34;44317:1;44309:6;44305:14;44298:58;44390:10;44385:2;44377:6;44373:15;44366:35;44181:227;:::o;44414:225::-;44554:34;44550:1;44542:6;44538:14;44531:58;44623:8;44618:2;44610:6;44606:15;44599:33;44414:225;:::o;44645:223::-;44785:34;44781:1;44773:6;44769:14;44762:58;44854:6;44849:2;44841:6;44837:15;44830:31;44645:223;:::o;44874:229::-;45014:34;45010:1;45002:6;44998:14;44991:58;45083:12;45078:2;45070:6;45066:15;45059:37;44874:229;:::o;45109:233::-;45249:34;45245:1;45237:6;45233:14;45226:58;45318:16;45313:2;45305:6;45301:15;45294:41;45109:233;:::o;45348:245::-;45488:34;45484:1;45476:6;45472:14;45465:58;45557:28;45552:2;45544:6;45540:15;45533:53;45348:245;:::o;45599:179::-;45739:31;45735:1;45727:6;45723:14;45716:55;45599:179;:::o;45784:224::-;45924:34;45920:1;45912:6;45908:14;45901:58;45993:7;45988:2;45980:6;45976:15;45969:32;45784:224;:::o;46014:179::-;46154:31;46150:1;46142:6;46138:14;46131:55;46014:179;:::o;46199:222::-;46339:34;46335:1;46327:6;46323:14;46316:58;46408:5;46403:2;46395:6;46391:15;46384:30;46199:222;:::o;46427:229::-;46567:34;46563:1;46555:6;46551:14;46544:58;46636:12;46631:2;46623:6;46619:15;46612:37;46427:229;:::o;46662:182::-;46802:34;46798:1;46790:6;46786:14;46779:58;46662:182;:::o;46850:227::-;46990:34;46986:1;46978:6;46974:14;46967:58;47059:10;47054:2;47046:6;47042:15;47035:35;46850:227;:::o;47083:114::-;;:::o;47203:228::-;47343:34;47339:1;47331:6;47327:14;47320:58;47412:11;47407:2;47399:6;47395:15;47388:36;47203:228;:::o;47437:::-;47577:34;47573:1;47565:6;47561:14;47554:58;47646:11;47641:2;47633:6;47629:15;47622:36;47437:228;:::o;47671:227::-;47811:34;47807:1;47799:6;47795:14;47788:58;47880:10;47875:2;47867:6;47863:15;47856:35;47671:227;:::o;47904:220::-;48044:34;48040:1;48032:6;48028:14;48021:58;48113:3;48108:2;48100:6;48096:15;48089:28;47904:220;:::o;48130:239::-;48270:34;48266:1;48258:6;48254:14;48247:58;48339:22;48334:2;48326:6;48322:15;48315:47;48130:239;:::o;48375:711::-;48414:3;48452:4;48434:16;48431:26;48428:39;;;48460:5;;48428:39;48489:20;;:::i;:::-;48564:1;48546:16;48542:24;48539:1;48533:4;48518:49;48597:4;48591:11;48696:16;48689:4;48681:6;48677:17;48674:39;48641:18;48633:6;48630:30;48614:113;48611:146;;;48742:5;;;;48611:146;48788:6;48782:4;48778:17;48824:3;48818:10;48851:18;48843:6;48840:30;48837:43;;;48873:5;;;;;;48837:43;48921:6;48914:4;48909:3;48905:14;48901:27;48980:1;48962:16;48958:24;48952:4;48948:35;48943:3;48940:44;48937:57;;;48987:5;;;;;;;48937:57;49004;49052:6;49046:4;49042:17;49034:6;49030:30;49024:4;49004:57;:::i;:::-;49077:3;49070:10;;48418:668;;;;;48375:711;;:::o;49092:122::-;49165:24;49183:5;49165:24;:::i;:::-;49158:5;49155:35;49145:63;;49204:1;49201;49194:12;49145:63;49092:122;:::o;49220:116::-;49290:21;49305:5;49290:21;:::i;:::-;49283:5;49280:32;49270:60;;49326:1;49323;49316:12;49270:60;49220:116;:::o;49342:120::-;49414:23;49431:5;49414:23;:::i;:::-;49407:5;49404:34;49394:62;;49452:1;49449;49442:12;49394:62;49342:120;:::o;49468:122::-;49541:24;49559:5;49541:24;:::i;:::-;49534:5;49531:35;49521:63;;49580:1;49577;49570:12;49521:63;49468:122;:::o
Swarm Source
ipfs://a521b52c003dc97a91b6b8151d739966002390047f9df71e7823854943811319
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.