Token BabyChimpGangXmas
Overview ERC-721
Total Supply:
863 BCGX
Holders:
504 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BabyChimpGangXmas
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-22 */ // SPDX-License-Identifier: MIT 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); } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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; } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } 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; } } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } pragma solidity ^0.8.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } pragma solidity ^0.8.2; // set contract name contract BabyChimpGangXmas is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, AccessControl, ERC721Burnable { using Counters for Counters.Counter; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); Counters.Counter private _tokenIdCounter; bool private mintable = false; uint256 public constant MAX_CHIMPS = 864; //set 1112 uint256 public constant MINT_PRICE = 35 ether; //set 35 constructor() ERC721("BabyChimpGangXmas", "BCGX") { //set name _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(PAUSER_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); } function _baseURI() internal pure override returns (string memory) { //ToDo set folder jsons return "ipfs://QmSWtJXoHWJ3v1nuMCKqnFGJbYE8EzoQiWnYNKAjkdXMWt/"; } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array return new uint256[](0); } uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } function pause() public onlyRole(PAUSER_ROLE) { _pause(); } function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } function safeMint(address to) public onlyRole(MINTER_ROLE) { require(_tokenIdCounter.current() < MAX_CHIMPS, 'All the BabyChimps are minted.'); _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function MintChimp() public payable { require(mintable, 'BabyChimps are not mintable yet.'); require(_tokenIdCounter.current() < MAX_CHIMPS, 'All the BabyChimps are minted.'); require(msg.value >= MINT_PRICE, 'Not the right payment.'); _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function MintThreeChimps() public payable { require(mintable, 'BabyChimps are not mintable yet.'); require(_tokenIdCounter.current() + 2 < MAX_CHIMPS, 'All the BabyChimps are minted.'); require(msg.value >= MINT_PRICE * 3, 'Not the right payment.'); uint256 index; for (index = 0; index < 3; index++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } function MintFiveChimps() public payable { require(mintable, 'BabyChimps are not mintable yet.'); require(_tokenIdCounter.current() + 4 < MAX_CHIMPS, 'All the BabyChimps are minted.'); require(msg.value >= MINT_PRICE * 5, 'Not the right payment.'); uint256 index; for (index = 0; index < 5; index++) { _safeMint(msg.sender, _tokenIdCounter.current()); _tokenIdCounter.increment(); } } ///Set the mintable state function enableMinting() public onlyRole(PAUSER_ROLE) { mintable = true; } function disableMinting() public onlyRole(PAUSER_ROLE) { mintable = false; } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } //withdraw functions function withdraw() public onlyRole(PAUSER_ROLE) { Address.sendValue(payable(msg.sender),address(this).balance); } function withdraw_backup() public onlyRole(DEFAULT_ADMIN_ROLE) { Address.sendValue(payable(msg.sender),address(this).balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CHIMPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MintChimp","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintFiveChimps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MintThreeChimps","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_backup","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600e60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280601181526020017f426162794368696d7047616e67586d61730000000000000000000000000000008152506040518060400160405280600481526020017f42434758000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000b1929190620002e2565b508060019080519060200190620000ca929190620002e2565b5050506000600b60006101000a81548160ff021916908315150217905550620000fd6000801b336200016760201b60201c565b6200012f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200016760201b60201c565b620001617f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6336200016760201b60201c565b620003f7565b6200017982826200017d60201b60201c565b5050565b6200018f82826200026f60201b60201c565b6200026b576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000210620002da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002f09062000392565b90600052602060002090601f01602090048101928262000314576000855562000360565b82601f106200032f57805160ff191683800117855562000360565b8280016001018555821562000360579182015b828111156200035f57825182559160200191906001019062000342565b5b5090506200036f919062000373565b5090565b5b808211156200038e57600081600090555060010162000374565b5090565b60006002820490506001821680620003ab57607f821691505b60208210811415620003c257620003c1620003c8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61508380620004076000396000f3fe6080604052600436106102305760003560e01c80635d992f661161012e578063b4f10171116100ab578063d547741f1161006f578063d547741f146107c6578063e27f0f62146107ef578063e63ab1e91461081a578063e797ec1b14610845578063e985e9c51461085c57610230565b8063b4f1017114610700578063b88d4fde1461070a578063c002d23d14610733578063c87b56dd1461075e578063d53913931461079b57610230565b80638462151c116100f25780638462151c1461060757806391d148541461064457806395d89b4114610681578063a217fddf146106ac578063a22cb465146106d757610230565b80635d992f66146105555780636352211e1461055f57806370a082311461059c5780637e5cd5c1146105d95780638456cb59146105f057610230565b80632f745c59116101bc57806342842e0e1161018057806342842e0e1461049157806342966c68146104ba5780634f661b9d146104e35780634f6ccce7146104ed5780635c975abb1461052a57610230565b80632f745c59146103d457806336568abe146104115780633ccfd60b1461043a5780633f4ba83a1461045157806340d097c31461046857610230565b8063095ea7b311610203578063095ea7b3146102f157806318160ddd1461031a57806323b872dd14610345578063248a9ca31461036e5780632f2ff15d146103ab57610230565b80630127bc7f1461023557806301ffc9a71461024c57806306fdde0314610289578063081812fc146102b4575b600080fd5b34801561024157600080fd5b5061024a610899565b005b34801561025857600080fd5b50610273600480360381019061026e91906138aa565b6108bb565b6040516102809190613fab565b60405180910390f35b34801561029557600080fd5b5061029e6108cd565b6040516102ab9190613fe1565b60405180910390f35b3480156102c057600080fd5b506102db60048036038101906102d69190613904565b61095f565b6040516102e89190613f22565b60405180910390f35b3480156102fd57600080fd5b50610318600480360381019061031391906137fd565b6109e4565b005b34801561032657600080fd5b5061032f610afc565b60405161033c9190614363565b60405180910390f35b34801561035157600080fd5b5061036c600480360381019061036791906136e7565b610b09565b005b34801561037a57600080fd5b506103956004803603810190610390919061383d565b610b69565b6040516103a29190613fc6565b60405180910390f35b3480156103b757600080fd5b506103d260048036038101906103cd919061386a565b610b89565b005b3480156103e057600080fd5b506103fb60048036038101906103f691906137fd565b610bb2565b6040516104089190614363565b60405180910390f35b34801561041d57600080fd5b506104386004803603810190610433919061386a565b610c57565b005b34801561044657600080fd5b5061044f610cda565b005b34801561045d57600080fd5b50610466610d19565b005b34801561047457600080fd5b5061048f600480360381019061048a919061367a565b610d56565b005b34801561049d57600080fd5b506104b860048036038101906104b391906136e7565b610df6565b005b3480156104c657600080fd5b506104e160048036038101906104dc9190613904565b610e16565b005b6104eb610e72565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613904565b610fb1565b6040516105219190614363565b60405180910390f35b34801561053657600080fd5b5061053f611022565b60405161054c9190613fab565b60405180910390f35b61055d611039565b005b34801561056b57600080fd5b5061058660048036038101906105819190613904565b611140565b6040516105939190613f22565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be919061367a565b6111f2565b6040516105d09190614363565b60405180910390f35b3480156105e557600080fd5b506105ee6112aa565b005b3480156105fc57600080fd5b506106056112fa565b005b34801561061357600080fd5b5061062e6004803603810190610629919061367a565b611337565b60405161063b9190613f89565b60405180910390f35b34801561065057600080fd5b5061066b6004803603810190610666919061386a565b611441565b6040516106789190613fab565b60405180910390f35b34801561068d57600080fd5b506106966114ac565b6040516106a39190613fe1565b60405180910390f35b3480156106b857600080fd5b506106c161153e565b6040516106ce9190613fc6565b60405180910390f35b3480156106e357600080fd5b506106fe60048036038101906106f991906137bd565b611545565b005b6107086116c6565b005b34801561071657600080fd5b50610731600480360381019061072c919061373a565b611805565b005b34801561073f57600080fd5b50610748611867565b6040516107559190614363565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190613904565b611874565b6040516107929190613fe1565b60405180910390f35b3480156107a757600080fd5b506107b0611886565b6040516107bd9190613fc6565b60405180910390f35b3480156107d257600080fd5b506107ed60048036038101906107e8919061386a565b6118aa565b005b3480156107fb57600080fd5b506108046118d3565b6040516108119190614363565b60405180910390f35b34801561082657600080fd5b5061082f6118d9565b60405161083c9190613fc6565b60405180910390f35b34801561085157600080fd5b5061085a6118fd565b005b34801561086857600080fd5b50610883600480360381019061087e91906136a7565b61194d565b6040516108909190613fab565b60405180910390f35b6000801b6108ae816108a96119e1565b6119e9565b6108b83347611a86565b50565b60006108c682611b7a565b9050919050565b6060600080546108dc9061465a565b80601f01602080910402602001604051908101604052809291908181526020018280546109089061465a565b80156109555780601f1061092a57610100808354040283529160200191610955565b820191906000526020600020905b81548152906001019060200180831161093857829003601f168201915b5050505050905090565b600061096a82611bf4565b6109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090614243565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ef82611140565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a57906142c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7f6119e1565b73ffffffffffffffffffffffffffffffffffffffff161480610aae5750610aad81610aa86119e1565b61194d565b5b610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae490614163565b60405180910390fd5b610af78383611c60565b505050565b6000600880549050905090565b610b1a610b146119e1565b82611d19565b610b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b50906142e3565b60405180910390fd5b610b64838383611df7565b505050565b6000600c6000838152602001908152602001600020600101549050919050565b610b9282610b69565b610ba381610b9e6119e1565b6119e9565b610bad8383612053565b505050565b6000610bbd836111f2565b8210610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590614043565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c5f6119e1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc390614343565b60405180910390fd5b610cd68282612134565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d0c81610d076119e1565b6119e9565b610d163347611a86565b50565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d4b81610d466119e1565b6119e9565b610d53612216565b50565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d8881610d836119e1565b6119e9565b610360610d95600d6122b8565b10610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906141c3565b60405180910390fd5b610de882610de3600d6122b8565b6122c6565b610df2600d6122e4565b5050565b610e1183838360405180602001604052806000815250611805565b505050565b610e27610e216119e1565b82611d19565b610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90614323565b60405180910390fd5b610e6f816122fa565b50565b600e60009054906101000a900460ff16610ec1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb8906141e3565b60405180910390fd5b6103606002610ed0600d6122b8565b610eda919061445b565b10610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f11906141c3565b60405180910390fd5b60036801e5b8fa8fe2ac0000610f3091906144e2565b341015610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f69906142a3565b60405180910390fd5b60005b6003811015610fae57610f9133610f8c600d6122b8565b6122c6565b610f9b600d6122e4565b8080610fa6906146bd565b915050610f75565b50565b6000610fbb610afc565b8210610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff390614303565b60405180910390fd5b600882815481106110105761100f6147f3565b5b90600052602060002001549050919050565b6000600b60009054906101000a900460ff16905090565b600e60009054906101000a900460ff16611088576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107f906141e3565b60405180910390fd5b610360611095600d6122b8565b106110d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cc906141c3565b60405180910390fd5b6801e5b8fa8fe2ac0000341015611121576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611118906142a3565b60405180910390fd5b6111343361112f600d6122b8565b6122c6565b61113e600d6122e4565b565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e0906141a3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125a90614183565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6112dc816112d76119e1565b6119e9565b6000600e60006101000a81548160ff02191690831515021790555050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61132c816113276119e1565b6119e9565b611334612306565b50565b60606000611344836111f2565b905060008114156113a157600067ffffffffffffffff81111561136a57611369614822565b5b6040519080825280602002602001820160405280156113985781602001602082028036833780820191505090505b5091505061143c565b60008167ffffffffffffffff8111156113bd576113bc614822565b5b6040519080825280602002602001820160405280156113eb5781602001602082028036833780820191505090505b50905060005b82811015611435576114038582610bb2565b828281518110611416576114156147f3565b5b602002602001018181525050808061142d906146bd565b9150506113f1565b8193505050505b919050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600180546114bb9061465a565b80601f01602080910402602001604051908101604052809291908181526020018280546114e79061465a565b80156115345780601f1061150957610100808354040283529160200191611534565b820191906000526020600020905b81548152906001019060200180831161151757829003601f168201915b5050505050905090565b6000801b81565b61154d6119e1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906140c3565b60405180910390fd5b80600560006115c86119e1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116756119e1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116ba9190613fab565b60405180910390a35050565b600e60009054906101000a900460ff16611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906141e3565b60405180910390fd5b6103606004611724600d6122b8565b61172e919061445b565b1061176e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611765906141c3565b60405180910390fd5b60056801e5b8fa8fe2ac000061178491906144e2565b3410156117c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bd906142a3565b60405180910390fd5b60005b6005811015611802576117e5336117e0600d6122b8565b6122c6565b6117ef600d6122e4565b80806117fa906146bd565b9150506117c9565b50565b6118166118106119e1565b83611d19565b611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c906142e3565b60405180910390fd5b611861848484846123a9565b50505050565b6801e5b8fa8fe2ac000081565b606061187f82612405565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6118b382610b69565b6118c4816118bf6119e1565b6119e9565b6118ce8383612134565b505050565b61036081565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a61192f8161192a6119e1565b6119e9565b6001600e60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b6119f38282611441565b611a8257611a188173ffffffffffffffffffffffffffffffffffffffff166014612557565b611a268360001c6020612557565b604051602001611a37929190613ee8565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a799190613fe1565b60405180910390fd5b5050565b80471015611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090614103565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611aef90613ed3565b60006040518083038185875af1925050503d8060008114611b2c576040519150601f19603f3d011682016040523d82523d6000602084013e611b31565b606091505b5050905080611b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6c906140e3565b60405180910390fd5b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bed5750611bec82612793565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cd383611140565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d2482611bf4565b611d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5a90614123565b60405180910390fd5b6000611d6e83611140565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611ddd57508373ffffffffffffffffffffffffffffffffffffffff16611dc58461095f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611dee5750611ded818561194d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e1782611140565b73ffffffffffffffffffffffffffffffffffffffff1614611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490614263565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed4906140a3565b60405180910390fd5b611ee883838361280d565b611ef3600082611c60565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f43919061453c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9a919061445b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61205d8282611441565b612130576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506120d56119e1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b61213e8282611441565b15612212576000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506121b76119e1565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b61221e611022565b61225d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225490614023565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6122a16119e1565b6040516122ae9190613f22565b60405180910390a1565b600081600001549050919050565b6122e0828260405180602001604052806000815250612865565b5050565b6001816000016000828254019250508190555050565b612303816128c0565b50565b61230e611022565b1561234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614143565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586123926119e1565b60405161239f9190613f22565b60405180910390a1565b6123b4848484611df7565b6123c084848484612913565b6123ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f690614063565b60405180910390fd5b50505050565b606061241082611bf4565b61244f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244690614223565b60405180910390fd5b6000600a6000848152602001908152602001600020805461246f9061465a565b80601f016020809104026020016040519081016040528092919081815260200182805461249b9061465a565b80156124e85780601f106124bd576101008083540402835291602001916124e8565b820191906000526020600020905b8154815290600101906020018083116124cb57829003601f168201915b5050505050905060006124f9612aaa565b905060008151141561250f578192505050612552565b60008251111561254457808260405160200161252c929190613eaf565b60405160208183030381529060405292505050612552565b61254d84612aca565b925050505b919050565b60606000600283600261256a91906144e2565b612574919061445b565b67ffffffffffffffff81111561258d5761258c614822565b5b6040519080825280601f01601f1916602001820160405280156125bf5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106125f7576125f66147f3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061265b5761265a6147f3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261269b91906144e2565b6126a5919061445b565b90505b6001811115612745577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106126e7576126e66147f3565b5b1a60f81b8282815181106126fe576126fd6147f3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061273e90614630565b90506126a8565b5060008414612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614003565b60405180910390fd5b8091505092915050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612806575061280582612b71565b5b9050919050565b612815611022565b15612855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284c90614143565b60405180910390fd5b612860838383612c53565b505050565b61286f8383612d67565b61287c6000848484612913565b6128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614063565b60405180910390fd5b505050565b6128c981612f35565b6000600a600083815260200190815260200160002080546128e99061465a565b90501461291057600a6000828152602001908152602001600020600061290f919061352f565b5b50565b60006129348473ffffffffffffffffffffffffffffffffffffffff16613046565b15612a9d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261295d6119e1565b8786866040518563ffffffff1660e01b815260040161297f9493929190613f3d565b602060405180830381600087803b15801561299957600080fd5b505af19250505080156129ca57506040513d601f19601f820116820180604052508101906129c791906138d7565b60015b612a4d573d80600081146129fa576040519150601f19603f3d011682016040523d82523d6000602084013e6129ff565b606091505b50600081511415612a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3c90614063565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612aa2565b600190505b949350505050565b606060405180606001604052806036815260200161501860369139905090565b6060612ad582611bf4565b612b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0b90614283565b60405180910390fd5b6000612b1e612aaa565b90506000815111612b3e5760405180602001604052806000815250612b69565b80612b4884613059565b604051602001612b59929190613eaf565b6040516020818303038152906040525b915050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c3c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c4c5750612c4b826131ba565b5b9050919050565b612c5e838383613224565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ca157612c9c81613229565b612ce0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612cdf57612cde8382613272565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d2357612d1e816133df565b612d62565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d6157612d6082826134b0565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90614203565b60405180910390fd5b612de081611bf4565b15612e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1790614083565b60405180910390fd5b612e2c6000838361280d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e7c919061445b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612f4082611140565b9050612f4e8160008461280d565b612f59600083611c60565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fa9919061453c565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b606060008214156130a1576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131b5565b600082905060005b600082146130d35780806130bc906146bd565b915050600a826130cc91906144b1565b91506130a9565b60008167ffffffffffffffff8111156130ef576130ee614822565b5b6040519080825280601f01601f1916602001820160405280156131215781602001600182028036833780820191505090505b5090505b600085146131ae5760018261313a919061453c565b9150600a856131499190614706565b6030613155919061445b565b60f81b81838151811061316b5761316a6147f3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131a791906144b1565b9450613125565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161327f846111f2565b613289919061453c565b905060006007600084815260200190815260200160002054905081811461336e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506133f3919061453c565b9050600060096000848152602001908152602001600020549050600060088381548110613423576134226147f3565b5b906000526020600020015490508060088381548110613445576134446147f3565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613494576134936147c4565b5b6001900381819060005260206000200160009055905550505050565b60006134bb836111f2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b50805461353b9061465a565b6000825580601f1061354d575061356c565b601f01602090049060005260206000209081019061356b919061356f565b5b50565b5b80821115613588576000816000905550600101613570565b5090565b600061359f61359a846143a3565b61437e565b9050828152602081018484840111156135bb576135ba614856565b5b6135c68482856145ee565b509392505050565b6000813590506135dd81614fa4565b92915050565b6000813590506135f281614fbb565b92915050565b60008135905061360781614fd2565b92915050565b60008135905061361c81614fe9565b92915050565b60008151905061363181614fe9565b92915050565b600082601f83011261364c5761364b614851565b5b813561365c84826020860161358c565b91505092915050565b60008135905061367481615000565b92915050565b6000602082840312156136905761368f614860565b5b600061369e848285016135ce565b91505092915050565b600080604083850312156136be576136bd614860565b5b60006136cc858286016135ce565b92505060206136dd858286016135ce565b9150509250929050565b600080600060608486031215613700576136ff614860565b5b600061370e868287016135ce565b935050602061371f868287016135ce565b925050604061373086828701613665565b9150509250925092565b6000806000806080858703121561375457613753614860565b5b6000613762878288016135ce565b9450506020613773878288016135ce565b935050604061378487828801613665565b925050606085013567ffffffffffffffff8111156137a5576137a461485b565b5b6137b187828801613637565b91505092959194509250565b600080604083850312156137d4576137d3614860565b5b60006137e2858286016135ce565b92505060206137f3858286016135e3565b9150509250929050565b6000806040838503121561381457613813614860565b5b6000613822858286016135ce565b925050602061383385828601613665565b9150509250929050565b60006020828403121561385357613852614860565b5b6000613861848285016135f8565b91505092915050565b6000806040838503121561388157613880614860565b5b600061388f858286016135f8565b92505060206138a0858286016135ce565b9150509250929050565b6000602082840312156138c0576138bf614860565b5b60006138ce8482850161360d565b91505092915050565b6000602082840312156138ed576138ec614860565b5b60006138fb84828501613622565b91505092915050565b60006020828403121561391a57613919614860565b5b600061392884828501613665565b91505092915050565b600061393d8383613e91565b60208301905092915050565b61395281614570565b82525050565b6000613963826143e4565b61396d8185614412565b9350613978836143d4565b8060005b838110156139a95781516139908882613931565b975061399b83614405565b92505060018101905061397c565b5085935050505092915050565b6139bf81614582565b82525050565b6139ce8161458e565b82525050565b60006139df826143ef565b6139e98185614423565b93506139f98185602086016145fd565b613a0281614865565b840191505092915050565b6000613a18826143fa565b613a22818561443f565b9350613a328185602086016145fd565b613a3b81614865565b840191505092915050565b6000613a51826143fa565b613a5b8185614450565b9350613a6b8185602086016145fd565b80840191505092915050565b6000613a8460208361443f565b9150613a8f82614876565b602082019050919050565b6000613aa760148361443f565b9150613ab28261489f565b602082019050919050565b6000613aca602b8361443f565b9150613ad5826148c8565b604082019050919050565b6000613aed60328361443f565b9150613af882614917565b604082019050919050565b6000613b10601c8361443f565b9150613b1b82614966565b602082019050919050565b6000613b3360248361443f565b9150613b3e8261498f565b604082019050919050565b6000613b5660198361443f565b9150613b61826149de565b602082019050919050565b6000613b79603a8361443f565b9150613b8482614a07565b604082019050919050565b6000613b9c601d8361443f565b9150613ba782614a56565b602082019050919050565b6000613bbf602c8361443f565b9150613bca82614a7f565b604082019050919050565b6000613be260108361443f565b9150613bed82614ace565b602082019050919050565b6000613c0560388361443f565b9150613c1082614af7565b604082019050919050565b6000613c28602a8361443f565b9150613c3382614b46565b604082019050919050565b6000613c4b60298361443f565b9150613c5682614b95565b604082019050919050565b6000613c6e601e8361443f565b9150613c7982614be4565b602082019050919050565b6000613c9160208361443f565b9150613c9c82614c0d565b602082019050919050565b6000613cb460208361443f565b9150613cbf82614c36565b602082019050919050565b6000613cd760318361443f565b9150613ce282614c5f565b604082019050919050565b6000613cfa602c8361443f565b9150613d0582614cae565b604082019050919050565b6000613d1d60298361443f565b9150613d2882614cfd565b604082019050919050565b6000613d40602f8361443f565b9150613d4b82614d4c565b604082019050919050565b6000613d6360168361443f565b9150613d6e82614d9b565b602082019050919050565b6000613d8660218361443f565b9150613d9182614dc4565b604082019050919050565b6000613da9600083614434565b9150613db482614e13565b600082019050919050565b6000613dcc60318361443f565b9150613dd782614e16565b604082019050919050565b6000613def602c8361443f565b9150613dfa82614e65565b604082019050919050565b6000613e12601783614450565b9150613e1d82614eb4565b601782019050919050565b6000613e3560308361443f565b9150613e4082614edd565b604082019050919050565b6000613e58601183614450565b9150613e6382614f2c565b601182019050919050565b6000613e7b602f8361443f565b9150613e8682614f55565b604082019050919050565b613e9a816145e4565b82525050565b613ea9816145e4565b82525050565b6000613ebb8285613a46565b9150613ec78284613a46565b91508190509392505050565b6000613ede82613d9c565b9150819050919050565b6000613ef382613e05565b9150613eff8285613a46565b9150613f0a82613e4b565b9150613f168284613a46565b91508190509392505050565b6000602082019050613f376000830184613949565b92915050565b6000608082019050613f526000830187613949565b613f5f6020830186613949565b613f6c6040830185613ea0565b8181036060830152613f7e81846139d4565b905095945050505050565b60006020820190508181036000830152613fa38184613958565b905092915050565b6000602082019050613fc060008301846139b6565b92915050565b6000602082019050613fdb60008301846139c5565b92915050565b60006020820190508181036000830152613ffb8184613a0d565b905092915050565b6000602082019050818103600083015261401c81613a77565b9050919050565b6000602082019050818103600083015261403c81613a9a565b9050919050565b6000602082019050818103600083015261405c81613abd565b9050919050565b6000602082019050818103600083015261407c81613ae0565b9050919050565b6000602082019050818103600083015261409c81613b03565b9050919050565b600060208201905081810360008301526140bc81613b26565b9050919050565b600060208201905081810360008301526140dc81613b49565b9050919050565b600060208201905081810360008301526140fc81613b6c565b9050919050565b6000602082019050818103600083015261411c81613b8f565b9050919050565b6000602082019050818103600083015261413c81613bb2565b9050919050565b6000602082019050818103600083015261415c81613bd5565b9050919050565b6000602082019050818103600083015261417c81613bf8565b9050919050565b6000602082019050818103600083015261419c81613c1b565b9050919050565b600060208201905081810360008301526141bc81613c3e565b9050919050565b600060208201905081810360008301526141dc81613c61565b9050919050565b600060208201905081810360008301526141fc81613c84565b9050919050565b6000602082019050818103600083015261421c81613ca7565b9050919050565b6000602082019050818103600083015261423c81613cca565b9050919050565b6000602082019050818103600083015261425c81613ced565b9050919050565b6000602082019050818103600083015261427c81613d10565b9050919050565b6000602082019050818103600083015261429c81613d33565b9050919050565b600060208201905081810360008301526142bc81613d56565b9050919050565b600060208201905081810360008301526142dc81613d79565b9050919050565b600060208201905081810360008301526142fc81613dbf565b9050919050565b6000602082019050818103600083015261431c81613de2565b9050919050565b6000602082019050818103600083015261433c81613e28565b9050919050565b6000602082019050818103600083015261435c81613e6e565b9050919050565b60006020820190506143786000830184613ea0565b92915050565b6000614388614399565b9050614394828261468c565b919050565b6000604051905090565b600067ffffffffffffffff8211156143be576143bd614822565b5b6143c782614865565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614466826145e4565b9150614471836145e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144a6576144a5614737565b5b828201905092915050565b60006144bc826145e4565b91506144c7836145e4565b9250826144d7576144d6614766565b5b828204905092915050565b60006144ed826145e4565b91506144f8836145e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561453157614530614737565b5b828202905092915050565b6000614547826145e4565b9150614552836145e4565b92508282101561456557614564614737565b5b828203905092915050565b600061457b826145c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561461b578082015181840152602081019050614600565b8381111561462a576000848401525b50505050565b600061463b826145e4565b9150600082141561464f5761464e614737565b5b600182039050919050565b6000600282049050600182168061467257607f821691505b6020821081141561468657614685614795565b5b50919050565b61469582614865565b810181811067ffffffffffffffff821117156146b4576146b3614822565b5b80604052505050565b60006146c8826145e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146fb576146fa614737565b5b600182019050919050565b6000614711826145e4565b915061471c836145e4565b92508261472c5761472b614766565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f416c6c2074686520426162794368696d707320617265206d696e7465642e0000600082015250565b7f426162794368696d707320617265206e6f74206d696e7461626c65207965742e600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420746865207269676874207061796d656e742e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614fad81614570565b8114614fb857600080fd5b50565b614fc481614582565b8114614fcf57600080fd5b50565b614fdb8161458e565b8114614fe657600080fd5b50565b614ff281614598565b8114614ffd57600080fd5b50565b615009816145e4565b811461501457600080fd5b5056fe697066733a2f2f516d5357744a586f48574a3376316e754d434b716e46474a62594538457a6f5169576e594e4b416a6b64584d57742fa2646970667358221220dc6a5633ac8caa4cb91ea4468819d5be8fb6f730848427c6eace0e3aa29be72e64736f6c63430008070033
Deployed ByteCode Sourcemap
56186:4576:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60617:142;;;;;;;;;;;;;:::i;:::-;;60220:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21028:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22587:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22110:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34604:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23477:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50943:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51328:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34272:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52376:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60481:128;;;;;;;;;;;;;:::i;:::-;;57699:77;;;;;;;;;;;;;:::i;:::-;;57784:248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23887:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54528:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58414:468;;;:::i;:::-;;34794:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42975:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58040:366;;;:::i;:::-;;20722:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20452:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59490:90;;;;;;;;;;;;;:::i;:::-;;57618:73;;;;;;;;;;;;;:::i;:::-;;57112:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49828:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21197:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48919:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22880:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58890:465;;;:::i;:::-;;24143:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56634:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60016:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56420:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51720:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56574:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56351:62;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59394:88;;;;;;;;;;;;;:::i;:::-;;23246:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60617:142;48964:4;60660:18;;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;60691:60:::1;60717:10;60729:21;60691:17;:60::i;:::-;60617:142:::0;:::o;60220:227::-;60374:4;60403:36;60427:11;60403:23;:36::i;:::-;60396:43;;60220:227;;;:::o;21028:100::-;21082:13;21115:5;21108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21028:100;:::o;22587:221::-;22663:7;22691:16;22699:7;22691;:16::i;:::-;22683:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22776:15;:24;22792:7;22776:24;;;;;;;;;;;;;;;;;;;;;22769:31;;22587:221;;;:::o;22110:411::-;22191:13;22207:23;22222:7;22207:14;:23::i;:::-;22191:39;;22255:5;22249:11;;:2;:11;;;;22241:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22349:5;22333:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22358:37;22375:5;22382:12;:10;:12::i;:::-;22358:16;:37::i;:::-;22333:62;22311:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22492:21;22501:2;22505:7;22492:8;:21::i;:::-;22180:341;22110:411;;:::o;34604:113::-;34665:7;34692:10;:17;;;;34685:24;;34604:113;:::o;23477:339::-;23672:41;23691:12;:10;:12::i;:::-;23705:7;23672:18;:41::i;:::-;23664:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23780:28;23790:4;23796:2;23800:7;23780:9;:28::i;:::-;23477:339;;;:::o;50943:123::-;51009:7;51036:6;:12;51043:4;51036:12;;;;;;;;;;;:22;;;51029:29;;50943:123;;;:::o;51328:147::-;51411:18;51424:4;51411:12;:18::i;:::-;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;51442:25:::1;51453:4;51459:7;51442:10;:25::i;:::-;51328:147:::0;;;:::o;34272:256::-;34369:7;34405:23;34422:5;34405:16;:23::i;:::-;34397:5;:31;34389:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34494:12;:19;34507:5;34494:19;;;;;;;;;;;;;;;:26;34514:5;34494:26;;;;;;;;;;;;34487:33;;34272:256;;;;:::o;52376:218::-;52483:12;:10;:12::i;:::-;52472:23;;:7;:23;;;52464:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;52560:26;52572:4;52578:7;52560:11;:26::i;:::-;52376:218;;:::o;60481:128::-;56389:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;60541:60:::1;60567:10;60579:21;60541:17;:60::i;:::-;60481:128:::0;:::o;57699:77::-;56389:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;57758:10:::1;:8;:10::i;:::-;57699:77:::0;:::o;57784:248::-;56458:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;56611:3:::1;57862:25;:15;:23;:25::i;:::-;:38;57854:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;57946:40;57956:2;57960:25;:15;:23;:25::i;:::-;57946:9;:40::i;:::-;57997:27;:15;:25;:27::i;:::-;57784:248:::0;;:::o;23887:185::-;24025:39;24042:4;24048:2;24052:7;24025:39;;;;;;;;;;;;:16;:39::i;:::-;23887:185;;;:::o;54528:245::-;54646:41;54665:12;:10;:12::i;:::-;54679:7;54646:18;:41::i;:::-;54638:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;54751:14;54757:7;54751:5;:14::i;:::-;54528:245;:::o;58414:468::-;58475:8;;;;;;;;;;;58467:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56611:3;58567:1;58539:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;:42;58531:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58661:1;56671:8;58648:14;;;;:::i;:::-;58635:9;:27;;58627:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58700:13;58724:149;58748:1;58740:5;:9;58724:149;;;58773:48;58783:10;58795:25;:15;:23;:25::i;:::-;58773:9;:48::i;:::-;58834:27;:15;:25;:27::i;:::-;58751:7;;;;;:::i;:::-;;;;58724:149;;;58456:426;58414:468::o;34794:233::-;34869:7;34905:30;:28;:30::i;:::-;34897:5;:38;34889:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35002:10;35013:5;35002:17;;;;;;;;:::i;:::-;;;;;;;;;;34995:24;;34794:233;;;:::o;42975:86::-;43022:4;43046:7;;;;;;;;;;;43039:14;;42975:86;:::o;58040:366::-;58095:8;;;;;;;;;;;58087:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56611:3;58159:25;:15;:23;:25::i;:::-;:38;58151:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;56671:8;58251:9;:23;;58243:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;58312:48;58322:10;58334:25;:15;:23;:25::i;:::-;58312:9;:48::i;:::-;58371:27;:15;:25;:27::i;:::-;58040:366::o;20722:239::-;20794:7;20814:13;20830:7;:16;20838:7;20830:16;;;;;;;;;;;;;;;;;;;;;20814:32;;20882:1;20865:19;;:5;:19;;;;20857:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20948:5;20941:12;;;20722:239;;;:::o;20452:208::-;20524:7;20569:1;20552:19;;:5;:19;;;;20544:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20636:9;:16;20646:5;20636:16;;;;;;;;;;;;;;;;20629:23;;20452:208;;;:::o;59490:90::-;56389:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;59567:5:::1;59556:8;;:16;;;;;;;;;;;;;;;;;;59490:90:::0;:::o;57618:73::-;56389:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;57675:8:::1;:6;:8::i;:::-;57618:73:::0;:::o;57112:498::-;57174:16;57203:18;57224:17;57234:6;57224:9;:17::i;:::-;57203:38;;57270:1;57256:10;:15;57252:109;;;57347:1;57333:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57326:23;;;;;57252:109;57371:23;57411:10;57397:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57371:51;;57433:13;57457:122;57481:10;57473:5;:18;57457:122;;;57533:34;57553:6;57561:5;57533:19;:34::i;:::-;57517:6;57524:5;57517:13;;;;;;;;:::i;:::-;;;;;;;:50;;;;;57493:7;;;;;:::i;:::-;;;;57457:122;;;57596:6;57589:13;;;;;57112:498;;;;:::o;49828:139::-;49906:4;49930:6;:12;49937:4;49930:12;;;;;;;;;;;:20;;:29;49951:7;49930:29;;;;;;;;;;;;;;;;;;;;;;;;;49923:36;;49828:139;;;;:::o;21197:104::-;21253:13;21286:7;21279:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21197:104;:::o;48919:49::-;48964:4;48919:49;;;:::o;22880:295::-;22995:12;:10;:12::i;:::-;22983:24;;:8;:24;;;;22975:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23095:8;23050:18;:32;23069:12;:10;:12::i;:::-;23050:32;;;;;;;;;;;;;;;:42;23083:8;23050:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23148:8;23119:48;;23134:12;:10;:12::i;:::-;23119:48;;;23158:8;23119:48;;;;;;:::i;:::-;;;;;;;;22880:295;;:::o;58890:465::-;58950:8;;;;;;;;;;;58942:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;56611:3;59042:1;59014:25;:15;:23;:25::i;:::-;:29;;;;:::i;:::-;:42;59006:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;59136:1;56671:8;59123:14;;;;:::i;:::-;59110:9;:27;;59102:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;59175:13;59199:149;59223:1;59215:5;:9;59199:149;;;59248:48;59258:10;59270:25;:15;:23;:25::i;:::-;59248:9;:48::i;:::-;59309:27;:15;:25;:27::i;:::-;59226:7;;;;;:::i;:::-;;;;59199:149;;;58931:424;58890:465::o;24143:328::-;24318:41;24337:12;:10;:12::i;:::-;24351:7;24318:18;:41::i;:::-;24310:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24424:39;24438:4;24444:2;24448:7;24457:5;24424:13;:39::i;:::-;24143:328;;;;:::o;56634:45::-;56671:8;56634:45;:::o;60016:196::-;60143:13;60181:23;60196:7;60181:14;:23::i;:::-;60174:30;;60016:196;;;:::o;56420:62::-;56458:24;56420:62;:::o;51720:149::-;51804:18;51817:4;51804:12;:18::i;:::-;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;51835:26:::1;51847:4;51853:7;51835:11;:26::i;:::-;51720:149:::0;;;:::o;56574:40::-;56611:3;56574:40;:::o;56351:62::-;56389:24;56351:62;:::o;59394:88::-;56389:24;49410:30;49421:4;49427:12;:10;:12::i;:::-;49410:10;:30::i;:::-;59470:4:::1;59459:8;;:15;;;;;;;;;;;;;;;;;;59394:88:::0;:::o;23246:164::-;23343:4;23367:18;:25;23386:5;23367:25;;;;;;;;;;;;;;;:35;23393:8;23367:35;;;;;;;;;;;;;;;;;;;;;;;;;23360:42;;23246:164;;;;:::o;15706:98::-;15759:7;15786:10;15779:17;;15706:98;:::o;50257:497::-;50338:22;50346:4;50352:7;50338;:22::i;:::-;50333:414;;50526:41;50554:7;50526:41;;50564:2;50526:19;:41::i;:::-;50640:38;50668:4;50660:13;;50675:2;50640:19;:38::i;:::-;50431:270;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50377:358;;;;;;;;;;;:::i;:::-;;;;;;;;50333:414;50257:497;;:::o;9128:317::-;9243:6;9218:21;:31;;9210:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9297:12;9315:9;:14;;9337:6;9315:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9296:52;;;9367:7;9359:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;9199:246;9128:317;;:::o;49532:204::-;49617:4;49656:32;49641:47;;;:11;:47;;;;:87;;;;49692:36;49716:11;49692:23;:36::i;:::-;49641:87;49634:94;;49532:204;;;:::o;25981:127::-;26046:4;26098:1;26070:30;;:7;:16;26078:7;26070:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26063:37;;25981:127;;;:::o;29963:174::-;30065:2;30038:15;:24;30054:7;30038:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30121:7;30117:2;30083:46;;30092:23;30107:7;30092:14;:23::i;:::-;30083:46;;;;;;;;;;;;29963:174;;:::o;26275:348::-;26368:4;26393:16;26401:7;26393;:16::i;:::-;26385:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26469:13;26485:23;26500:7;26485:14;:23::i;:::-;26469:39;;26538:5;26527:16;;:7;:16;;;:51;;;;26571:7;26547:31;;:20;26559:7;26547:11;:20::i;:::-;:31;;;26527:51;:87;;;;26582:32;26599:5;26606:7;26582:16;:32::i;:::-;26527:87;26519:96;;;26275:348;;;;:::o;29267:578::-;29426:4;29399:31;;:23;29414:7;29399:14;:23::i;:::-;:31;;;29391:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29509:1;29495:16;;:2;:16;;;;29487:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29565:39;29586:4;29592:2;29596:7;29565:20;:39::i;:::-;29669:29;29686:1;29690:7;29669:8;:29::i;:::-;29730:1;29711:9;:15;29721:4;29711:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29759:1;29742:9;:13;29752:2;29742:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29790:2;29771:7;:16;29779:7;29771:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29829:7;29825:2;29810:27;;29819:4;29810:27;;;;;;;;;;;;29267:578;;;:::o;53680:229::-;53755:22;53763:4;53769:7;53755;:22::i;:::-;53750:152;;53826:4;53794:6;:12;53801:4;53794:12;;;;;;;;;;;:20;;:29;53815:7;53794:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;53877:12;:10;:12::i;:::-;53850:40;;53868:7;53850:40;;53862:4;53850:40;;;;;;;;;;53750:152;53680:229;;:::o;53917:230::-;53992:22;54000:4;54006:7;53992;:22::i;:::-;53988:152;;;54063:5;54031:6;:12;54038:4;54031:12;;;;;;;;;;;:20;;:29;54052:7;54031:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;54115:12;:10;:12::i;:::-;54088:40;;54106:7;54088:40;;54100:4;54088:40;;;;;;;;;;53988:152;53917:230;;:::o;44034:120::-;43578:8;:6;:8::i;:::-;43570:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;44103:5:::1;44093:7;;:15;;;;;;;;;;;;;;;;;;44124:22;44133:12;:10;:12::i;:::-;44124:22;;;;;;:::i;:::-;;;;;;;;44034:120::o:0;55538:114::-;55603:7;55630;:14;;;55623:21;;55538:114;;;:::o;26965:110::-;27041:26;27051:2;27055:7;27041:26;;;;;;;;;;;;:9;:26::i;:::-;26965:110;;:::o;55660:127::-;55767:1;55749:7;:14;;;:19;;;;;;;;;;;55660:127;:::o;59893:115::-;59980:20;59992:7;59980:11;:20::i;:::-;59893:115;:::o;43775:118::-;43301:8;:6;:8::i;:::-;43300:9;43292:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;43845:4:::1;43835:7;;:14;;;;;;;;;;;;;;;;;;43865:20;43872:12;:10;:12::i;:::-;43865:20;;;;;;:::i;:::-;;;;;;;;43775:118::o:0;25353:315::-;25510:28;25520:4;25526:2;25530:7;25510:9;:28::i;:::-;25557:48;25580:4;25586:2;25590:7;25599:5;25557:22;:48::i;:::-;25549:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25353:315;;;;:::o;40463:679::-;40536:13;40570:16;40578:7;40570;:16::i;:::-;40562:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;40653:23;40679:10;:19;40690:7;40679:19;;;;;;;;;;;40653:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40709:18;40730:10;:8;:10::i;:::-;40709:31;;40838:1;40822:4;40816:18;:23;40812:72;;;40863:9;40856:16;;;;;;40812:72;41014:1;40994:9;40988:23;:27;40984:108;;;41063:4;41069:9;41046:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41032:48;;;;;;40984:108;41111:23;41126:7;41111:14;:23::i;:::-;41104:30;;;;40463:679;;;;:::o;17474:451::-;17549:13;17575:19;17620:1;17611:6;17607:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17597:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17575:47;;17633:15;:6;17640:1;17633:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17659;:6;17666:1;17659:9;;;;;;;;:::i;:::-;;;;;:15;;;;;;;;;;;17690:9;17715:1;17706:6;17702:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;17690:26;;17685:135;17722:1;17718;:5;17685:135;;;17757:12;17778:3;17770:5;:11;17757:25;;;;;;;:::i;:::-;;;;;17745:6;17752:1;17745:9;;;;;;;;:::i;:::-;;;;;:37;;;;;;;;;;;17807:1;17797:11;;;;;17725:3;;;;:::i;:::-;;;17685:135;;;;17847:1;17838:5;:10;17830:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;17910:6;17896:21;;;17474:451;;;;:::o;33964:224::-;34066:4;34105:35;34090:50;;;:11;:50;;;;:90;;;;34144:36;34168:11;34144:23;:36::i;:::-;34090:90;34083:97;;33964:224;;;:::o;59588:227::-;43301:8;:6;:8::i;:::-;43300:9;43292:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;59762:45:::1;59789:4;59795:2;59799:7;59762:26;:45::i;:::-;59588:227:::0;;;:::o;27302:321::-;27432:18;27438:2;27442:7;27432:5;:18::i;:::-;27483:54;27514:1;27518:2;27522:7;27531:5;27483:22;:54::i;:::-;27461:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27302:321;;;:::o;41744:206::-;41813:20;41825:7;41813:11;:20::i;:::-;41887:1;41856:10;:19;41867:7;41856:19;;;;;;;;;;;41850:33;;;;;:::i;:::-;;;:38;41846:97;;41912:10;:19;41923:7;41912:19;;;;;;;;;;;;41905:26;;;;:::i;:::-;41846:97;41744:206;:::o;30702:799::-;30857:4;30878:15;:2;:13;;;:15::i;:::-;30874:620;;;30930:2;30914:36;;;30951:12;:10;:12::i;:::-;30965:4;30971:7;30980:5;30914:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30910:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31173:1;31156:6;:13;:18;31152:272;;;31199:60;;;;;;;;;;:::i;:::-;;;;;;;;31152:272;31374:6;31368:13;31359:6;31355:2;31351:15;31344:38;30910:529;31047:41;;;31037:51;;;:6;:51;;;;31030:58;;;;;30874:620;31478:4;31471:11;;30702:799;;;;;;;:::o;56922:182::-;56974:13;57033:63;;;;;;;;;;;;;;;;;;;56922:182;:::o;21372:334::-;21445:13;21479:16;21487:7;21479;:16::i;:::-;21471:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21560:21;21584:10;:8;:10::i;:::-;21560:34;;21636:1;21618:7;21612:21;:25;:86;;;;;;;;;;;;;;;;;21664:7;21673:18;:7;:16;:18::i;:::-;21647:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21612:86;21605:93;;;21372:334;;;:::o;20083:305::-;20185:4;20237:25;20222:40;;;:11;:40;;;;:105;;;;20294:33;20279:48;;;:11;:48;;;;20222:105;:158;;;;20344:36;20368:11;20344:23;:36::i;:::-;20222:158;20202:178;;20083:305;;;:::o;35640:589::-;35784:45;35811:4;35817:2;35821:7;35784:26;:45::i;:::-;35862:1;35846:18;;:4;:18;;;35842:187;;;35881:40;35913:7;35881:31;:40::i;:::-;35842:187;;;35951:2;35943:10;;:4;:10;;;35939:90;;35970:47;36003:4;36009:7;35970:32;:47::i;:::-;35939:90;35842:187;36057:1;36043:16;;:2;:16;;;36039:183;;;36076:45;36113:7;36076:36;:45::i;:::-;36039:183;;;36149:4;36143:10;;:2;:10;;;36139:83;;36170:40;36198:2;36202:7;36170:27;:40::i;:::-;36139:83;36039:183;35640:589;;;:::o;27959:382::-;28053:1;28039:16;;:2;:16;;;;28031:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28112:16;28120:7;28112;:16::i;:::-;28111:17;28103:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28174:45;28203:1;28207:2;28211:7;28174:20;:45::i;:::-;28249:1;28232:9;:13;28242:2;28232:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28280:2;28261:7;:16;28269:7;28261:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28325:7;28321:2;28300:33;;28317:1;28300:33;;;;;;;;;;;;27959:382;;:::o;28570:360::-;28630:13;28646:23;28661:7;28646:14;:23::i;:::-;28630:39;;28682:48;28703:5;28718:1;28722:7;28682:20;:48::i;:::-;28771:29;28788:1;28792:7;28771:8;:29::i;:::-;28833:1;28813:9;:16;28823:5;28813:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;28852:7;:16;28860:7;28852:16;;;;;;;;;;;;28845:23;;;;;;;;;;;28914:7;28910:1;28886:36;;28895:5;28886:36;;;;;;;;;;;;28619:311;28570:360;:::o;7806:387::-;7866:4;8074:12;8141:7;8129:20;8121:28;;8184:1;8177:4;:8;8170:15;;;7806:387;;;:::o;16173:723::-;16229:13;16459:1;16450:5;:10;16446:53;;;16477:10;;;;;;;;;;;;;;;;;;;;;16446:53;16509:12;16524:5;16509:20;;16540:14;16565:78;16580:1;16572:4;:9;16565:78;;16598:8;;;;;:::i;:::-;;;;16629:2;16621:10;;;;;:::i;:::-;;;16565:78;;;16653:19;16685:6;16675:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16653:39;;16703:154;16719:1;16710:5;:10;16703:154;;16747:1;16737:11;;;;;:::i;:::-;;;16814:2;16806:5;:10;;;;:::i;:::-;16793:2;:24;;;;:::i;:::-;16780:39;;16763:6;16770;16763:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16843:2;16834:11;;;;;:::i;:::-;;;16703:154;;;16881:6;16867:21;;;;;16173:723;;;;:::o;18659:157::-;18744:4;18783:25;18768:40;;;:11;:40;;;;18761:47;;18659:157;;;:::o;32073:126::-;;;;:::o;36952:164::-;37056:10;:17;;;;37029:15;:24;37045:7;37029:24;;;;;;;;;;;:44;;;;37084:10;37100:7;37084:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36952:164;:::o;37743:988::-;38009:22;38059:1;38034:22;38051:4;38034:16;:22::i;:::-;:26;;;;:::i;:::-;38009:51;;38071:18;38092:17;:26;38110:7;38092:26;;;;;;;;;;;;38071:47;;38239:14;38225:10;:28;38221:328;;38270:19;38292:12;:18;38305:4;38292:18;;;;;;;;;;;;;;;:34;38311:14;38292:34;;;;;;;;;;;;38270:56;;38376:11;38343:12;:18;38356:4;38343:18;;;;;;;;;;;;;;;:30;38362:10;38343:30;;;;;;;;;;;:44;;;;38493:10;38460:17;:30;38478:11;38460:30;;;;;;;;;;;:43;;;;38255:294;38221:328;38645:17;:26;38663:7;38645:26;;;;;;;;;;;38638:33;;;38689:12;:18;38702:4;38689:18;;;;;;;;;;;;;;;:34;38708:14;38689:34;;;;;;;;;;;38682:41;;;37824:907;;37743:988;;:::o;39026:1079::-;39279:22;39324:1;39304:10;:17;;;;:21;;;;:::i;:::-;39279:46;;39336:18;39357:15;:24;39373:7;39357:24;;;;;;;;;;;;39336:45;;39708:19;39730:10;39741:14;39730:26;;;;;;;;:::i;:::-;;;;;;;;;;39708:48;;39794:11;39769:10;39780;39769:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;39905:10;39874:15;:28;39890:11;39874:28;;;;;;;;;;;:41;;;;40046:15;:24;40062:7;40046:24;;;;;;;;;;;40039:31;;;40081:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39097:1008;;;39026:1079;:::o;36530:221::-;36615:14;36632:20;36649:2;36632:16;:20::i;:::-;36615:37;;36690:7;36663:12;:16;36676:2;36663:16;;;;;;;;;;;;;;;:24;36680:6;36663:24;;;;;;;;;;;:34;;;;36737:6;36708:17;:26;36726:7;36708:26;;;;;;;;;;;:35;;;;36604:147;36530:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;707:139;;;;:::o;852:137::-;897:5;935:6;922:20;913:29;;951:32;977:5;951:32;:::i;:::-;852:137;;;;:::o;995:141::-;1051:5;1082:6;1076:13;1067:22;;1098:32;1124:5;1098:32;:::i;:::-;995:141;;;;:::o;1155:338::-;1210:5;1259:3;1252:4;1244:6;1240:17;1236:27;1226:122;;1267:79;;:::i;:::-;1226:122;1384:6;1371:20;1409:78;1483:3;1475:6;1468:4;1460:6;1456:17;1409:78;:::i;:::-;1400:87;;1216:277;1155:338;;;;:::o;1499:139::-;1545:5;1583:6;1570:20;1561:29;;1599:33;1626:5;1599:33;:::i;:::-;1499:139;;;;:::o;1644:329::-;1703:6;1752:2;1740:9;1731:7;1727:23;1723:32;1720:119;;;1758:79;;:::i;:::-;1720:119;1878:1;1903:53;1948:7;1939:6;1928:9;1924:22;1903:53;:::i;:::-;1893:63;;1849:117;1644:329;;;;:::o;1979:474::-;2047:6;2055;2104:2;2092:9;2083:7;2079:23;2075:32;2072:119;;;2110:79;;:::i;:::-;2072:119;2230:1;2255:53;2300:7;2291:6;2280:9;2276:22;2255:53;:::i;:::-;2245:63;;2201:117;2357:2;2383:53;2428:7;2419:6;2408:9;2404:22;2383:53;:::i;:::-;2373:63;;2328:118;1979:474;;;;;:::o;2459:619::-;2536:6;2544;2552;2601:2;2589:9;2580:7;2576:23;2572:32;2569:119;;;2607:79;;:::i;:::-;2569:119;2727:1;2752:53;2797:7;2788:6;2777:9;2773:22;2752:53;:::i;:::-;2742:63;;2698:117;2854:2;2880:53;2925:7;2916:6;2905:9;2901:22;2880:53;:::i;:::-;2870:63;;2825:118;2982:2;3008:53;3053:7;3044:6;3033:9;3029:22;3008:53;:::i;:::-;2998:63;;2953:118;2459:619;;;;;:::o;3084:943::-;3179:6;3187;3195;3203;3252:3;3240:9;3231:7;3227:23;3223:33;3220:120;;;3259:79;;:::i;:::-;3220:120;3379:1;3404:53;3449:7;3440:6;3429:9;3425:22;3404:53;:::i;:::-;3394:63;;3350:117;3506:2;3532:53;3577:7;3568:6;3557:9;3553:22;3532:53;:::i;:::-;3522:63;;3477:118;3634:2;3660:53;3705:7;3696:6;3685:9;3681:22;3660:53;:::i;:::-;3650:63;;3605:118;3790:2;3779:9;3775:18;3762:32;3821:18;3813:6;3810:30;3807:117;;;3843:79;;:::i;:::-;3807:117;3948:62;4002:7;3993:6;3982:9;3978:22;3948:62;:::i;:::-;3938:72;;3733:287;3084:943;;;;;;;:::o;4033:468::-;4098:6;4106;4155:2;4143:9;4134:7;4130:23;4126:32;4123:119;;;4161:79;;:::i;:::-;4123:119;4281:1;4306:53;4351:7;4342:6;4331:9;4327:22;4306:53;:::i;:::-;4296:63;;4252:117;4408:2;4434:50;4476:7;4467:6;4456:9;4452:22;4434:50;:::i;:::-;4424:60;;4379:115;4033:468;;;;;:::o;4507:474::-;4575:6;4583;4632:2;4620:9;4611:7;4607:23;4603:32;4600:119;;;4638:79;;:::i;:::-;4600:119;4758:1;4783:53;4828:7;4819:6;4808:9;4804:22;4783:53;:::i;:::-;4773:63;;4729:117;4885:2;4911:53;4956:7;4947:6;4936:9;4932:22;4911:53;:::i;:::-;4901:63;;4856:118;4507:474;;;;;:::o;4987:329::-;5046:6;5095:2;5083:9;5074:7;5070:23;5066:32;5063:119;;;5101:79;;:::i;:::-;5063:119;5221:1;5246:53;5291:7;5282:6;5271:9;5267:22;5246:53;:::i;:::-;5236:63;;5192:117;4987:329;;;;:::o;5322:474::-;5390:6;5398;5447:2;5435:9;5426:7;5422:23;5418:32;5415:119;;;5453:79;;:::i;:::-;5415:119;5573:1;5598:53;5643:7;5634:6;5623:9;5619:22;5598:53;:::i;:::-;5588:63;;5544:117;5700:2;5726:53;5771:7;5762:6;5751:9;5747:22;5726:53;:::i;:::-;5716:63;;5671:118;5322:474;;;;;:::o;5802:327::-;5860:6;5909:2;5897:9;5888:7;5884:23;5880:32;5877:119;;;5915:79;;:::i;:::-;5877:119;6035:1;6060:52;6104:7;6095:6;6084:9;6080:22;6060:52;:::i;:::-;6050:62;;6006:116;5802:327;;;;:::o;6135:349::-;6204:6;6253:2;6241:9;6232:7;6228:23;6224:32;6221:119;;;6259:79;;:::i;:::-;6221:119;6379:1;6404:63;6459:7;6450:6;6439:9;6435:22;6404:63;:::i;:::-;6394:73;;6350:127;6135:349;;;;:::o;6490:329::-;6549:6;6598:2;6586:9;6577:7;6573:23;6569:32;6566:119;;;6604:79;;:::i;:::-;6566:119;6724:1;6749:53;6794:7;6785:6;6774:9;6770:22;6749:53;:::i;:::-;6739:63;;6695:117;6490:329;;;;:::o;6825:179::-;6894:10;6915:46;6957:3;6949:6;6915:46;:::i;:::-;6993:4;6988:3;6984:14;6970:28;;6825:179;;;;:::o;7010:118::-;7097:24;7115:5;7097:24;:::i;:::-;7092:3;7085:37;7010:118;;:::o;7164:732::-;7283:3;7312:54;7360:5;7312:54;:::i;:::-;7382:86;7461:6;7456:3;7382:86;:::i;:::-;7375:93;;7492:56;7542:5;7492:56;:::i;:::-;7571:7;7602:1;7587:284;7612:6;7609:1;7606:13;7587:284;;;7688:6;7682:13;7715:63;7774:3;7759:13;7715:63;:::i;:::-;7708:70;;7801:60;7854:6;7801:60;:::i;:::-;7791:70;;7647:224;7634:1;7631;7627:9;7622:14;;7587:284;;;7591:14;7887:3;7880:10;;7288:608;;;7164:732;;;;:::o;7902:109::-;7983:21;7998:5;7983:21;:::i;:::-;7978:3;7971:34;7902:109;;:::o;8017:118::-;8104:24;8122:5;8104:24;:::i;:::-;8099:3;8092:37;8017:118;;:::o;8141:360::-;8227:3;8255:38;8287:5;8255:38;:::i;:::-;8309:70;8372:6;8367:3;8309:70;:::i;:::-;8302:77;;8388:52;8433:6;8428:3;8421:4;8414:5;8410:16;8388:52;:::i;:::-;8465:29;8487:6;8465:29;:::i;:::-;8460:3;8456:39;8449:46;;8231:270;8141:360;;;;:::o;8507:364::-;8595:3;8623:39;8656:5;8623:39;:::i;:::-;8678:71;8742:6;8737:3;8678:71;:::i;:::-;8671:78;;8758:52;8803:6;8798:3;8791:4;8784:5;8780:16;8758:52;:::i;:::-;8835:29;8857:6;8835:29;:::i;:::-;8830:3;8826:39;8819:46;;8599:272;8507:364;;;;:::o;8877:377::-;8983:3;9011:39;9044:5;9011:39;:::i;:::-;9066:89;9148:6;9143:3;9066:89;:::i;:::-;9059:96;;9164:52;9209:6;9204:3;9197:4;9190:5;9186:16;9164:52;:::i;:::-;9241:6;9236:3;9232:16;9225:23;;8987:267;8877:377;;;;:::o;9260:366::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:::-;10146:3;10167:67;10231:2;10226:3;10167:67;:::i;:::-;10160:74;;10243:93;10332:3;10243:93;:::i;:::-;10361:2;10356:3;10352:12;10345:19;;10004:366;;;:::o;10376:::-;10518:3;10539:67;10603:2;10598:3;10539:67;:::i;:::-;10532:74;;10615:93;10704:3;10615:93;:::i;:::-;10733:2;10728:3;10724:12;10717:19;;10376:366;;;:::o;10748:::-;10890:3;10911:67;10975:2;10970:3;10911:67;:::i;:::-;10904:74;;10987:93;11076:3;10987:93;:::i;:::-;11105:2;11100:3;11096:12;11089:19;;10748:366;;;:::o;11120:::-;11262:3;11283:67;11347:2;11342:3;11283:67;:::i;:::-;11276:74;;11359:93;11448:3;11359:93;:::i;:::-;11477:2;11472:3;11468:12;11461:19;;11120:366;;;:::o;11492:::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:::-;12006:3;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12103:93;12192:3;12103:93;:::i;:::-;12221:2;12216:3;12212:12;12205:19;;11864:366;;;:::o;12236:::-;12378:3;12399:67;12463:2;12458:3;12399:67;:::i;:::-;12392:74;;12475:93;12564:3;12475:93;:::i;:::-;12593:2;12588:3;12584:12;12577:19;;12236:366;;;:::o;12608:::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:::-;13122:3;13143:67;13207:2;13202:3;13143:67;:::i;:::-;13136:74;;13219:93;13308:3;13219:93;:::i;:::-;13337:2;13332:3;13328:12;13321:19;;12980:366;;;:::o;13352:::-;13494:3;13515:67;13579:2;13574:3;13515:67;:::i;:::-;13508:74;;13591:93;13680:3;13591:93;:::i;:::-;13709:2;13704:3;13700:12;13693:19;;13352:366;;;:::o;13724:::-;13866:3;13887:67;13951:2;13946:3;13887:67;:::i;:::-;13880:74;;13963:93;14052:3;13963:93;:::i;:::-;14081:2;14076:3;14072:12;14065:19;;13724:366;;;:::o;14096:::-;14238:3;14259:67;14323:2;14318:3;14259:67;:::i;:::-;14252:74;;14335:93;14424:3;14335:93;:::i;:::-;14453:2;14448:3;14444:12;14437:19;;14096:366;;;:::o;14468:::-;14610:3;14631:67;14695:2;14690:3;14631:67;:::i;:::-;14624:74;;14707:93;14796:3;14707:93;:::i;:::-;14825:2;14820:3;14816:12;14809:19;;14468:366;;;:::o;14840:::-;14982:3;15003:67;15067:2;15062:3;15003:67;:::i;:::-;14996:74;;15079:93;15168:3;15079:93;:::i;:::-;15197:2;15192:3;15188:12;15181:19;;14840:366;;;:::o;15212:::-;15354:3;15375:67;15439:2;15434:3;15375:67;:::i;:::-;15368:74;;15451:93;15540:3;15451:93;:::i;:::-;15569:2;15564:3;15560:12;15553:19;;15212:366;;;:::o;15584:::-;15726:3;15747:67;15811:2;15806:3;15747:67;:::i;:::-;15740:74;;15823:93;15912:3;15823:93;:::i;:::-;15941:2;15936:3;15932:12;15925:19;;15584:366;;;:::o;15956:::-;16098:3;16119:67;16183:2;16178:3;16119:67;:::i;:::-;16112:74;;16195:93;16284:3;16195:93;:::i;:::-;16313:2;16308:3;16304:12;16297:19;;15956:366;;;:::o;16328:::-;16470:3;16491:67;16555:2;16550:3;16491:67;:::i;:::-;16484:74;;16567:93;16656:3;16567:93;:::i;:::-;16685:2;16680:3;16676:12;16669:19;;16328:366;;;:::o;16700:::-;16842:3;16863:67;16927:2;16922:3;16863:67;:::i;:::-;16856:74;;16939:93;17028:3;16939:93;:::i;:::-;17057:2;17052:3;17048:12;17041:19;;16700:366;;;:::o;17072:::-;17214:3;17235:67;17299:2;17294:3;17235:67;:::i;:::-;17228:74;;17311:93;17400:3;17311:93;:::i;:::-;17429:2;17424:3;17420:12;17413:19;;17072:366;;;:::o;17444:::-;17586:3;17607:67;17671:2;17666:3;17607:67;:::i;:::-;17600:74;;17683:93;17772:3;17683:93;:::i;:::-;17801:2;17796:3;17792:12;17785:19;;17444:366;;;:::o;17816:398::-;17975:3;17996:83;18077:1;18072:3;17996:83;:::i;:::-;17989:90;;18088:93;18177:3;18088:93;:::i;:::-;18206:1;18201:3;18197:11;18190:18;;17816:398;;;:::o;18220:366::-;18362:3;18383:67;18447:2;18442:3;18383:67;:::i;:::-;18376:74;;18459:93;18548:3;18459:93;:::i;:::-;18577:2;18572:3;18568:12;18561:19;;18220:366;;;:::o;18592:::-;18734:3;18755:67;18819:2;18814:3;18755:67;:::i;:::-;18748:74;;18831:93;18920:3;18831:93;:::i;:::-;18949:2;18944:3;18940:12;18933:19;;18592:366;;;:::o;18964:402::-;19124:3;19145:85;19227:2;19222:3;19145:85;:::i;:::-;19138:92;;19239:93;19328:3;19239:93;:::i;:::-;19357:2;19352:3;19348:12;19341:19;;18964:402;;;:::o;19372:366::-;19514:3;19535:67;19599:2;19594:3;19535:67;:::i;:::-;19528:74;;19611:93;19700:3;19611:93;:::i;:::-;19729:2;19724:3;19720:12;19713:19;;19372:366;;;:::o;19744:402::-;19904:3;19925:85;20007:2;20002:3;19925:85;:::i;:::-;19918:92;;20019:93;20108:3;20019:93;:::i;:::-;20137:2;20132:3;20128:12;20121:19;;19744:402;;;:::o;20152:366::-;20294:3;20315:67;20379:2;20374:3;20315:67;:::i;:::-;20308:74;;20391:93;20480:3;20391:93;:::i;:::-;20509:2;20504:3;20500:12;20493:19;;20152:366;;;:::o;20524:108::-;20601:24;20619:5;20601:24;:::i;:::-;20596:3;20589:37;20524:108;;:::o;20638:118::-;20725:24;20743:5;20725:24;:::i;:::-;20720:3;20713:37;20638:118;;:::o;20762:435::-;20942:3;20964:95;21055:3;21046:6;20964:95;:::i;:::-;20957:102;;21076:95;21167:3;21158:6;21076:95;:::i;:::-;21069:102;;21188:3;21181:10;;20762:435;;;;;:::o;21203:379::-;21387:3;21409:147;21552:3;21409:147;:::i;:::-;21402:154;;21573:3;21566:10;;21203:379;;;:::o;21588:967::-;21970:3;21992:148;22136:3;21992:148;:::i;:::-;21985:155;;22157:95;22248:3;22239:6;22157:95;:::i;:::-;22150:102;;22269:148;22413:3;22269:148;:::i;:::-;22262:155;;22434:95;22525:3;22516:6;22434:95;:::i;:::-;22427:102;;22546:3;22539:10;;21588:967;;;;;:::o;22561:222::-;22654:4;22692:2;22681:9;22677:18;22669:26;;22705:71;22773:1;22762:9;22758:17;22749:6;22705:71;:::i;:::-;22561:222;;;;:::o;22789:640::-;22984:4;23022:3;23011:9;23007:19;22999:27;;23036:71;23104:1;23093:9;23089:17;23080:6;23036:71;:::i;:::-;23117:72;23185:2;23174:9;23170:18;23161:6;23117:72;:::i;:::-;23199;23267:2;23256:9;23252:18;23243:6;23199:72;:::i;:::-;23318:9;23312:4;23308:20;23303:2;23292:9;23288:18;23281:48;23346:76;23417:4;23408:6;23346:76;:::i;:::-;23338:84;;22789:640;;;;;;;:::o;23435:373::-;23578:4;23616:2;23605:9;23601:18;23593:26;;23665:9;23659:4;23655:20;23651:1;23640:9;23636:17;23629:47;23693:108;23796:4;23787:6;23693:108;:::i;:::-;23685:116;;23435:373;;;;:::o;23814:210::-;23901:4;23939:2;23928:9;23924:18;23916:26;;23952:65;24014:1;24003:9;23999:17;23990:6;23952:65;:::i;:::-;23814:210;;;;:::o;24030:222::-;24123:4;24161:2;24150:9;24146:18;24138:26;;24174:71;24242:1;24231:9;24227:17;24218:6;24174:71;:::i;:::-;24030:222;;;;:::o;24258:313::-;24371:4;24409:2;24398:9;24394:18;24386:26;;24458:9;24452:4;24448:20;24444:1;24433:9;24429:17;24422:47;24486:78;24559:4;24550:6;24486:78;:::i;:::-;24478:86;;24258:313;;;;:::o;24577:419::-;24743:4;24781:2;24770:9;24766:18;24758:26;;24830:9;24824:4;24820:20;24816:1;24805:9;24801:17;24794:47;24858:131;24984:4;24858:131;:::i;:::-;24850:139;;24577:419;;;:::o;25002:::-;25168:4;25206:2;25195:9;25191:18;25183:26;;25255:9;25249:4;25245:20;25241:1;25230:9;25226:17;25219:47;25283:131;25409:4;25283:131;:::i;:::-;25275:139;;25002:419;;;:::o;25427:::-;25593:4;25631:2;25620:9;25616:18;25608:26;;25680:9;25674:4;25670:20;25666:1;25655:9;25651:17;25644:47;25708:131;25834:4;25708:131;:::i;:::-;25700:139;;25427:419;;;:::o;25852:::-;26018:4;26056:2;26045:9;26041:18;26033:26;;26105:9;26099:4;26095:20;26091:1;26080:9;26076:17;26069:47;26133:131;26259:4;26133:131;:::i;:::-;26125:139;;25852:419;;;:::o;26277:::-;26443:4;26481:2;26470:9;26466:18;26458:26;;26530:9;26524:4;26520:20;26516:1;26505:9;26501:17;26494:47;26558:131;26684:4;26558:131;:::i;:::-;26550:139;;26277:419;;;:::o;26702:::-;26868:4;26906:2;26895:9;26891:18;26883:26;;26955:9;26949:4;26945:20;26941:1;26930:9;26926:17;26919:47;26983:131;27109:4;26983:131;:::i;:::-;26975:139;;26702:419;;;:::o;27127:::-;27293:4;27331:2;27320:9;27316:18;27308:26;;27380:9;27374:4;27370:20;27366:1;27355:9;27351:17;27344:47;27408:131;27534:4;27408:131;:::i;:::-;27400:139;;27127:419;;;:::o;27552:::-;27718:4;27756:2;27745:9;27741:18;27733:26;;27805:9;27799:4;27795:20;27791:1;27780:9;27776:17;27769:47;27833:131;27959:4;27833:131;:::i;:::-;27825:139;;27552:419;;;:::o;27977:::-;28143:4;28181:2;28170:9;28166:18;28158:26;;28230:9;28224:4;28220:20;28216:1;28205:9;28201:17;28194:47;28258:131;28384:4;28258:131;:::i;:::-;28250:139;;27977:419;;;:::o;28402:::-;28568:4;28606:2;28595:9;28591:18;28583:26;;28655:9;28649:4;28645:20;28641:1;28630:9;28626:17;28619:47;28683:131;28809:4;28683:131;:::i;:::-;28675:139;;28402:419;;;:::o;28827:::-;28993:4;29031:2;29020:9;29016:18;29008:26;;29080:9;29074:4;29070:20;29066:1;29055:9;29051:17;29044:47;29108:131;29234:4;29108:131;:::i;:::-;29100:139;;28827:419;;;:::o;29252:::-;29418:4;29456:2;29445:9;29441:18;29433:26;;29505:9;29499:4;29495:20;29491:1;29480:9;29476:17;29469:47;29533:131;29659:4;29533:131;:::i;:::-;29525:139;;29252:419;;;:::o;29677:::-;29843:4;29881:2;29870:9;29866:18;29858:26;;29930:9;29924:4;29920:20;29916:1;29905:9;29901:17;29894:47;29958:131;30084:4;29958:131;:::i;:::-;29950:139;;29677:419;;;:::o;30102:::-;30268:4;30306:2;30295:9;30291:18;30283:26;;30355:9;30349:4;30345:20;30341:1;30330:9;30326:17;30319:47;30383:131;30509:4;30383:131;:::i;:::-;30375:139;;30102:419;;;:::o;30527:::-;30693:4;30731:2;30720:9;30716:18;30708:26;;30780:9;30774:4;30770:20;30766:1;30755:9;30751:17;30744:47;30808:131;30934:4;30808:131;:::i;:::-;30800:139;;30527:419;;;:::o;30952:::-;31118:4;31156:2;31145:9;31141:18;31133:26;;31205:9;31199:4;31195:20;31191:1;31180:9;31176:17;31169:47;31233:131;31359:4;31233:131;:::i;:::-;31225:139;;30952:419;;;:::o;31377:::-;31543:4;31581:2;31570:9;31566:18;31558:26;;31630:9;31624:4;31620:20;31616:1;31605:9;31601:17;31594:47;31658:131;31784:4;31658:131;:::i;:::-;31650:139;;31377:419;;;:::o;31802:::-;31968:4;32006:2;31995:9;31991:18;31983:26;;32055:9;32049:4;32045:20;32041:1;32030:9;32026:17;32019:47;32083:131;32209:4;32083:131;:::i;:::-;32075:139;;31802:419;;;:::o;32227:::-;32393:4;32431:2;32420:9;32416:18;32408:26;;32480:9;32474:4;32470:20;32466:1;32455:9;32451:17;32444:47;32508:131;32634:4;32508:131;:::i;:::-;32500:139;;32227:419;;;:::o;32652:::-;32818:4;32856:2;32845:9;32841:18;32833:26;;32905:9;32899:4;32895:20;32891:1;32880:9;32876:17;32869:47;32933:131;33059:4;32933:131;:::i;:::-;32925:139;;32652:419;;;:::o;33077:::-;33243:4;33281:2;33270:9;33266:18;33258:26;;33330:9;33324:4;33320:20;33316:1;33305:9;33301:17;33294:47;33358:131;33484:4;33358:131;:::i;:::-;33350:139;;33077:419;;;:::o;33502:::-;33668:4;33706:2;33695:9;33691:18;33683:26;;33755:9;33749:4;33745:20;33741:1;33730:9;33726:17;33719:47;33783:131;33909:4;33783:131;:::i;:::-;33775:139;;33502:419;;;:::o;33927:::-;34093:4;34131:2;34120:9;34116:18;34108:26;;34180:9;34174:4;34170:20;34166:1;34155:9;34151:17;34144:47;34208:131;34334:4;34208:131;:::i;:::-;34200:139;;33927:419;;;:::o;34352:::-;34518:4;34556:2;34545:9;34541:18;34533:26;;34605:9;34599:4;34595:20;34591:1;34580:9;34576:17;34569:47;34633:131;34759:4;34633:131;:::i;:::-;34625:139;;34352:419;;;:::o;34777:::-;34943:4;34981:2;34970:9;34966:18;34958:26;;35030:9;35024:4;35020:20;35016:1;35005:9;35001:17;34994:47;35058:131;35184:4;35058:131;:::i;:::-;35050:139;;34777:419;;;:::o;35202:::-;35368:4;35406:2;35395:9;35391:18;35383:26;;35455:9;35449:4;35445:20;35441:1;35430:9;35426:17;35419:47;35483:131;35609:4;35483:131;:::i;:::-;35475:139;;35202:419;;;:::o;35627:::-;35793:4;35831:2;35820:9;35816:18;35808:26;;35880:9;35874:4;35870:20;35866:1;35855:9;35851:17;35844:47;35908:131;36034:4;35908:131;:::i;:::-;35900:139;;35627:419;;;:::o;36052:222::-;36145:4;36183:2;36172:9;36168:18;36160:26;;36196:71;36264:1;36253:9;36249:17;36240:6;36196:71;:::i;:::-;36052:222;;;;:::o;36280:129::-;36314:6;36341:20;;:::i;:::-;36331:30;;36370:33;36398:4;36390:6;36370:33;:::i;:::-;36280:129;;;:::o;36415:75::-;36448:6;36481:2;36475:9;36465:19;;36415:75;:::o;36496:307::-;36557:4;36647:18;36639:6;36636:30;36633:56;;;36669:18;;:::i;:::-;36633:56;36707:29;36729:6;36707:29;:::i;:::-;36699:37;;36791:4;36785;36781:15;36773:23;;36496:307;;;:::o;36809:132::-;36876:4;36899:3;36891:11;;36929:4;36924:3;36920:14;36912:22;;36809:132;;;:::o;36947:114::-;37014:6;37048:5;37042:12;37032:22;;36947:114;;;:::o;37067:98::-;37118:6;37152:5;37146:12;37136:22;;37067:98;;;:::o;37171:99::-;37223:6;37257:5;37251:12;37241:22;;37171:99;;;:::o;37276:113::-;37346:4;37378;37373:3;37369:14;37361:22;;37276:113;;;:::o;37395:184::-;37494:11;37528:6;37523:3;37516:19;37568:4;37563:3;37559:14;37544:29;;37395:184;;;;:::o;37585:168::-;37668:11;37702:6;37697:3;37690:19;37742:4;37737:3;37733:14;37718:29;;37585:168;;;;:::o;37759:147::-;37860:11;37897:3;37882:18;;37759:147;;;;:::o;37912:169::-;37996:11;38030:6;38025:3;38018:19;38070:4;38065:3;38061:14;38046:29;;37912:169;;;;:::o;38087:148::-;38189:11;38226:3;38211:18;;38087:148;;;;:::o;38241:305::-;38281:3;38300:20;38318:1;38300:20;:::i;:::-;38295:25;;38334:20;38352:1;38334:20;:::i;:::-;38329:25;;38488:1;38420:66;38416:74;38413:1;38410:81;38407:107;;;38494:18;;:::i;:::-;38407:107;38538:1;38535;38531:9;38524:16;;38241:305;;;;:::o;38552:185::-;38592:1;38609:20;38627:1;38609:20;:::i;:::-;38604:25;;38643:20;38661:1;38643:20;:::i;:::-;38638:25;;38682:1;38672:35;;38687:18;;:::i;:::-;38672:35;38729:1;38726;38722:9;38717:14;;38552:185;;;;:::o;38743:348::-;38783:7;38806:20;38824:1;38806:20;:::i;:::-;38801:25;;38840:20;38858:1;38840:20;:::i;:::-;38835:25;;39028:1;38960:66;38956:74;38953:1;38950:81;38945:1;38938:9;38931:17;38927:105;38924:131;;;39035:18;;:::i;:::-;38924:131;39083:1;39080;39076:9;39065:20;;38743:348;;;;:::o;39097:191::-;39137:4;39157:20;39175:1;39157:20;:::i;:::-;39152:25;;39191:20;39209:1;39191:20;:::i;:::-;39186:25;;39230:1;39227;39224:8;39221:34;;;39235:18;;:::i;:::-;39221:34;39280:1;39277;39273:9;39265:17;;39097:191;;;;:::o;39294:96::-;39331:7;39360:24;39378:5;39360:24;:::i;:::-;39349:35;;39294:96;;;:::o;39396:90::-;39430:7;39473:5;39466:13;39459:21;39448:32;;39396:90;;;:::o;39492:77::-;39529:7;39558:5;39547:16;;39492:77;;;:::o;39575:149::-;39611:7;39651:66;39644:5;39640:78;39629:89;;39575:149;;;:::o;39730:126::-;39767:7;39807:42;39800:5;39796:54;39785:65;;39730:126;;;:::o;39862:77::-;39899:7;39928:5;39917:16;;39862:77;;;:::o;39945:154::-;40029:6;40024:3;40019;40006:30;40091:1;40082:6;40077:3;40073:16;40066:27;39945:154;;;:::o;40105:307::-;40173:1;40183:113;40197:6;40194:1;40191:13;40183:113;;;40282:1;40277:3;40273:11;40267:18;40263:1;40258:3;40254:11;40247:39;40219:2;40216:1;40212:10;40207:15;;40183:113;;;40314:6;40311:1;40308:13;40305:101;;;40394:1;40385:6;40380:3;40376:16;40369:27;40305:101;40154:258;40105:307;;;:::o;40418:171::-;40457:3;40480:24;40498:5;40480:24;:::i;:::-;40471:33;;40526:4;40519:5;40516:15;40513:41;;;40534:18;;:::i;:::-;40513:41;40581:1;40574:5;40570:13;40563:20;;40418:171;;;:::o;40595:320::-;40639:6;40676:1;40670:4;40666:12;40656:22;;40723:1;40717:4;40713:12;40744:18;40734:81;;40800:4;40792:6;40788:17;40778:27;;40734:81;40862:2;40854:6;40851:14;40831:18;40828:38;40825:84;;;40881:18;;:::i;:::-;40825:84;40646:269;40595:320;;;:::o;40921:281::-;41004:27;41026:4;41004:27;:::i;:::-;40996:6;40992:40;41134:6;41122:10;41119:22;41098:18;41086:10;41083:34;41080:62;41077:88;;;41145:18;;:::i;:::-;41077:88;41185:10;41181:2;41174:22;40964:238;40921:281;;:::o;41208:233::-;41247:3;41270:24;41288:5;41270:24;:::i;:::-;41261:33;;41316:66;41309:5;41306:77;41303:103;;;41386:18;;:::i;:::-;41303:103;41433:1;41426:5;41422:13;41415:20;;41208:233;;;:::o;41447:176::-;41479:1;41496:20;41514:1;41496:20;:::i;:::-;41491:25;;41530:20;41548:1;41530:20;:::i;:::-;41525:25;;41569:1;41559:35;;41574:18;;:::i;:::-;41559:35;41615:1;41612;41608:9;41603:14;;41447:176;;;;:::o;41629:180::-;41677:77;41674:1;41667:88;41774:4;41771:1;41764:15;41798:4;41795:1;41788:15;41815:180;41863:77;41860:1;41853:88;41960:4;41957:1;41950:15;41984:4;41981:1;41974:15;42001:180;42049:77;42046:1;42039:88;42146:4;42143:1;42136:15;42170:4;42167:1;42160:15;42187:180;42235:77;42232:1;42225:88;42332:4;42329:1;42322:15;42356:4;42353:1;42346:15;42373:180;42421:77;42418:1;42411:88;42518:4;42515:1;42508:15;42542:4;42539:1;42532:15;42559:180;42607:77;42604:1;42597:88;42704:4;42701:1;42694:15;42728:4;42725:1;42718:15;42745:117;42854:1;42851;42844:12;42868:117;42977:1;42974;42967:12;42991:117;43100:1;43097;43090:12;43114:117;43223:1;43220;43213:12;43237:102;43278:6;43329:2;43325:7;43320:2;43313:5;43309:14;43305:28;43295:38;;43237:102;;;:::o;43345:182::-;43485:34;43481:1;43473:6;43469:14;43462:58;43345:182;:::o;43533:170::-;43673:22;43669:1;43661:6;43657:14;43650:46;43533:170;:::o;43709:230::-;43849:34;43845:1;43837:6;43833:14;43826:58;43918:13;43913:2;43905:6;43901:15;43894:38;43709:230;:::o;43945:237::-;44085:34;44081:1;44073:6;44069:14;44062:58;44154:20;44149:2;44141:6;44137:15;44130:45;43945:237;:::o;44188:178::-;44328:30;44324:1;44316:6;44312:14;44305:54;44188:178;:::o;44372:223::-;44512:34;44508:1;44500:6;44496:14;44489:58;44581:6;44576:2;44568:6;44564:15;44557:31;44372:223;:::o;44601:175::-;44741:27;44737:1;44729:6;44725:14;44718:51;44601:175;:::o;44782:245::-;44922:34;44918:1;44910:6;44906:14;44899:58;44991:28;44986:2;44978:6;44974:15;44967:53;44782:245;:::o;45033:179::-;45173:31;45169:1;45161:6;45157:14;45150:55;45033:179;:::o;45218:231::-;45358:34;45354:1;45346:6;45342:14;45335:58;45427:14;45422:2;45414:6;45410:15;45403:39;45218:231;:::o;45455:166::-;45595:18;45591:1;45583:6;45579:14;45572:42;45455:166;:::o;45627:243::-;45767:34;45763:1;45755:6;45751:14;45744:58;45836:26;45831:2;45823:6;45819:15;45812:51;45627:243;:::o;45876:229::-;46016:34;46012:1;46004:6;46000:14;45993:58;46085:12;46080:2;46072:6;46068:15;46061:37;45876:229;:::o;46111:228::-;46251:34;46247:1;46239:6;46235:14;46228:58;46320:11;46315:2;46307:6;46303:15;46296:36;46111:228;:::o;46345:180::-;46485:32;46481:1;46473:6;46469:14;46462:56;46345:180;:::o;46531:182::-;46671:34;46667:1;46659:6;46655:14;46648:58;46531:182;:::o;46719:::-;46859:34;46855:1;46847:6;46843:14;46836:58;46719:182;:::o;46907:236::-;47047:34;47043:1;47035:6;47031:14;47024:58;47116:19;47111:2;47103:6;47099:15;47092:44;46907:236;:::o;47149:231::-;47289:34;47285:1;47277:6;47273:14;47266:58;47358:14;47353:2;47345:6;47341:15;47334:39;47149:231;:::o;47386:228::-;47526:34;47522:1;47514:6;47510:14;47503:58;47595:11;47590:2;47582:6;47578:15;47571:36;47386:228;:::o;47620:234::-;47760:34;47756:1;47748:6;47744:14;47737:58;47829:17;47824:2;47816:6;47812:15;47805:42;47620:234;:::o;47860:172::-;48000:24;47996:1;47988:6;47984:14;47977:48;47860:172;:::o;48038:220::-;48178:34;48174:1;48166:6;48162:14;48155:58;48247:3;48242:2;48234:6;48230:15;48223:28;48038:220;:::o;48264:114::-;;:::o;48384:236::-;48524:34;48520:1;48512:6;48508:14;48501:58;48593:19;48588:2;48580:6;48576:15;48569:44;48384:236;:::o;48626:231::-;48766:34;48762:1;48754:6;48750:14;48743:58;48835:14;48830:2;48822:6;48818:15;48811:39;48626:231;:::o;48863:173::-;49003:25;48999:1;48991:6;48987:14;48980:49;48863:173;:::o;49042:235::-;49182:34;49178:1;49170:6;49166:14;49159:58;49251:18;49246:2;49238:6;49234:15;49227:43;49042:235;:::o;49283:167::-;49423:19;49419:1;49411:6;49407:14;49400:43;49283:167;:::o;49456:234::-;49596:34;49592:1;49584:6;49580:14;49573:58;49665:17;49660:2;49652:6;49648:15;49641:42;49456:234;:::o;49696:122::-;49769:24;49787:5;49769:24;:::i;:::-;49762:5;49759:35;49749:63;;49808:1;49805;49798:12;49749:63;49696:122;:::o;49824:116::-;49894:21;49909:5;49894:21;:::i;:::-;49887:5;49884:32;49874:60;;49930:1;49927;49920:12;49874:60;49824:116;:::o;49946:122::-;50019:24;50037:5;50019:24;:::i;:::-;50012:5;50009:35;49999:63;;50058:1;50055;50048:12;49999:63;49946:122;:::o;50074:120::-;50146:23;50163:5;50146:23;:::i;:::-;50139:5;50136:34;50126:62;;50184:1;50181;50174:12;50126:62;50074:120;:::o;50200:122::-;50273:24;50291:5;50273:24;:::i;:::-;50266:5;50263:35;50253:63;;50312:1;50309;50302:12;50253:63;50200:122;:::o
Swarm Source
ipfs://dc6a5633ac8caa4cb91ea4468819d5be8fb6f730848427c6eace0e3aa29be72e