ERC-721
Overview
Max Total Supply
17 HEX
Holders
7
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 HEXLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Hex
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-09-07 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol 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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol 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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol 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 {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol 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(); } } // File: contracts/Hex.sol // ___ ___ ___ // /__/\ / /\ /__/| // \ \:\ / /:/_ | |:| // \__\:\ / /:/ /\ | |:| // ___ / /::\ / /:/ /:/_ __|__|:| // /__/\ /:/\:\ /__/:/ /:/ /\ /__/::::\____ // \ \:\/:/__\/ \ \:\/:/ /:/ ~\~~\::::/ // \ \::/ \ \::/ /:/ |~~|:|~~ // \ \:\ \ \:\/:/ | |:| // \ \:\ \ \::/ | |:| // \__\/ \__\/ |__|/ pragma solidity ^0.8.2; contract Hex is ERC721Enumerable, ReentrancyGuard, Ownable { string[] private symbols = [ "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f" ]; address vault = 0x35a49E6E43fcB161B2662982c261497FA734f2a0; function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getFirst(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "777", symbols); } function getSecond(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "8008135", symbols); } function getThird(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "06373351", symbols); } function getFourth(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "420", symbols); } function getFifth(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "1337", symbols); } function getSixth(uint256 tokenId) public view returns (string memory) { return pluck(tokenId, "6969", symbols); } function getHex(uint256 tokenId) public view returns (string memory) { string memory hexString = string(abi.encodePacked(getFirst(tokenId), getSecond(tokenId), getThird(tokenId), getFourth(tokenId), getFifth(tokenId), getSixth(tokenId))); return hexString; } function pluck(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal pure returns (string memory) { uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId)))); return sourceArray[rand % sourceArray.length]; } function tokenURI(uint256 tokenId) public view override returns (string memory) { string[15] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; } .hexcolor {font-family: serif; font-size: 14px;}</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="hexcolor" fill="#'; parts[1] = getHex(tokenId); parts[2] = '">#</text><text x="10" y="40" class="base">'; parts[3] = getFirst(tokenId); parts[4] = '</text><text x="10" y="60" class="base">'; parts[5] = getSecond(tokenId); parts[6] = '</text><text x="10" y="80" class="base">'; parts[7] = getThird(tokenId); parts[8] = '</text><text x="10" y="100" class="base">'; parts[9] = getFourth(tokenId); parts[10] = '</text><text x="10" y="120" class="base">'; parts[11] = getFifth(tokenId); parts[12] = '</text><text x="10" y="140" class="base">'; parts[13] = getSixth(tokenId); parts[14] = "</text></svg>"; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8])); output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14])); string memory json = Base64.encode( bytes( string( abi.encodePacked( '{"name": "Hex #', toString(tokenId), '", "description": "Hex is a randomized hexadecimal sequence generated and stored on chain. Images and other functionality are intentionally omitted for others to interpret. Feel free to use Hex in any way you want.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}' ) ) ) ); output = string(abi.encodePacked("data:application/json;base64,", json)); return output; } function mint(uint256 tokenId) public payable nonReentrant { require(tokenId > 0 && tokenId < 7778, "Token ID invalid"); require(msg.value >= 50000000000000000, "Not enough Ether"); _safeMint(_msgSender(), tokenId); } function ownerClaim() public nonReentrant onlyOwner { for (uint256 i = 7778; i < 8001; i++) { _safeMint(owner(), i); } } function withdraw() public payable onlyOwner { require(payable(vault).send(address(this).balance)); } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // 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); } constructor() ERC721("Hex", "HEX") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFifth","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFirst","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFourth","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHex","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSecond","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSixth","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getThird","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040526040518061020001604052806040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f370000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f390000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f610000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f620000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f630000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f640000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f650000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f6600000000000000000000000000000000000000000000000000000000000000815250815250600c906010620003d0929190620005d0565b507335a49e6e43fcb161b2662982c261497fa734f2a0600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200043357600080fd5b506040518060400160405280600381526020017f48657800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48455800000000000000000000000000000000000000000000000000000000008152508160009080519060200190620004b892919062000637565b508060019080519060200190620004d192919062000637565b5050506001600a81905550620004fc620004f06200050260201b60201c565b6200050a60201b60201c565b620007ba565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805482825590600052602060002090810192821562000624579160200282015b82811115620006235782518290805190602001906200061292919062000637565b5091602001919060010190620005f1565b5b509050620006339190620006c8565b5090565b828054620006459062000755565b90600052602060002090601f016020900481019282620006695760008555620006b5565b82601f106200068457805160ff1916838001178555620006b5565b82800160010185558215620006b5579182015b82811115620006b457825182559160200191906001019062000697565b5b509050620006c49190620006f0565b5090565b5b80821115620006ec5760008181620006e291906200070f565b50600101620006c9565b5090565b5b808211156200070b576000816000905550600101620006f1565b5090565b5080546200071d9062000755565b6000825580601f1062000731575062000752565b601f016020900490600052602060002090810190620007519190620006f0565b5b50565b600060028204905060018216806200076e57607f821691505b602082108114156200078557620007846200078b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614e0080620007ca6000396000f3fe6080604052600436106101c25760003560e01c8063667386f7116100f7578063a0712d6811610095578063c9f7c1f911610064578063c9f7c1f914610670578063e985e9c5146106ad578063f2fde38b146106ea578063fa7f71b114610713576101c2565b8063a0712d68146105c5578063a22cb465146105e1578063b88d4fde1461060a578063c87b56dd14610633576101c2565b80638aa001fc116100d15780638aa001fc146104f55780638da5cb5b1461053257806395d89b411461055d5780639ec29b8214610588576101c2565b8063667386f71461046457806370a08231146104a1578063715018a6146104de576101c2565b80632f745c591161016457806342d9d8761161013e57806342d9d876146103965780634dbe5889146103d35780634f6ccce7146103ea5780636352211e14610427576101c2565b80632f745c59146103265780633ccfd60b1461036357806342842e0e1461036d576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630b2503a61461029557806318160ddd146102d257806323b872dd146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906135f3565b610750565b6040516101fb9190613cd7565b60405180910390f35b34801561021057600080fd5b506102196107ca565b6040516102269190613cf2565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061364d565b61085c565b6040516102639190613c70565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906135b3565b6108e1565b005b3480156102a157600080fd5b506102bc60048036038101906102b7919061364d565b6109f9565b6040516102c99190613cf2565b60405180910390f35b3480156102de57600080fd5b506102e7610b13565b6040516102f49190613f94565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f919061349d565b610b20565b005b34801561033257600080fd5b5061034d600480360381019061034891906135b3565b610b80565b60405161035a9190613f94565b60405180910390f35b61036b610c25565b005b34801561037957600080fd5b50610394600480360381019061038f919061349d565b610d03565b005b3480156103a257600080fd5b506103bd60048036038101906103b8919061364d565b610d23565b6040516103ca9190613cf2565b60405180910390f35b3480156103df57600080fd5b506103e8610e3d565b005b3480156103f657600080fd5b50610411600480360381019061040c919061364d565b610f48565b60405161041e9190613f94565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061364d565b610fb9565b60405161045b9190613c70565b60405180910390f35b34801561047057600080fd5b5061048b6004803603810190610486919061364d565b61106b565b6040516104989190613cf2565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613430565b611185565b6040516104d59190613f94565b60405180910390f35b3480156104ea57600080fd5b506104f361123d565b005b34801561050157600080fd5b5061051c6004803603810190610517919061364d565b6112c5565b6040516105299190613cf2565b60405180910390f35b34801561053e57600080fd5b506105476113df565b6040516105549190613c70565b60405180910390f35b34801561056957600080fd5b50610572611409565b60405161057f9190613cf2565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa919061364d565b61149b565b6040516105bc9190613cf2565b60405180910390f35b6105df60048036038101906105da919061364d565b6115b5565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613573565b6116b9565b005b34801561061657600080fd5b50610631600480360381019061062c91906134f0565b61183a565b005b34801561063f57600080fd5b5061065a6004803603810190610655919061364d565b61189c565b6040516106679190613cf2565b60405180910390f35b34801561067c57600080fd5b506106976004803603810190610692919061364d565b611da6565b6040516106a49190613cf2565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf919061345d565b611e0f565b6040516106e19190613cd7565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190613430565b611ea3565b005b34801561071f57600080fd5b5061073a6004803603810190610735919061364d565b611f9b565b6040516107479190613cf2565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506107c2826120b5565b5b9050919050565b6060600080546107d990614213565b80601f016020809104026020016040519081016040528092919081815260200182805461080590614213565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782612197565b6108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90613e74565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613ef4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097c612203565b73ffffffffffffffffffffffffffffffffffffffff1614806109ab57506109aa816109a5612203565b611e0f565b5b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190613df4565b60405180910390fd5b6109f4838361220b565b505050565b6060610b0c826040518060400160405280600481526020017f3133333700000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610b03578382906000526020600020018054610a7690614213565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290614213565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b505050505081526020019060010190610a57565b505050506122c4565b9050919050565b6000600880549050905090565b610b31610b2b612203565b8261232d565b610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613f14565b60405180910390fd5b610b7b83838361240b565b505050565b6000610b8b83611185565b8210610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613d14565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2d612203565b73ffffffffffffffffffffffffffffffffffffffff16610c4b6113df565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613e94565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0157600080fd5b565b610d1e8383836040518060200160405280600081525061183a565b505050565b6060610e36826040518060400160405280600481526020017f3639363900000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610e2d578382906000526020600020018054610da090614213565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcc90614213565b8015610e195780601f10610dee57610100808354040283529160200191610e19565b820191906000526020600020905b815481529060010190602001808311610dfc57829003601f168201915b505050505081526020019060010190610d81565b505050506122c4565b9050919050565b6002600a541415610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613f74565b60405180910390fd5b6002600a81905550610e93612203565b73ffffffffffffffffffffffffffffffffffffffff16610eb16113df565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90613e94565b60405180910390fd5b6000611e6290505b611f41811015610f3d57610f2a610f246113df565b82612667565b8080610f3590614276565b915050610f0f565b506001600a81905550565b6000610f52610b13565b8210610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613f54565b60405180910390fd5b60088281548110610fa757610fa66143ac565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990613e34565b60405180910390fd5b80915050919050565b606061117e826040518060400160405280600381526020017f3737370000000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156111755783829060005260206000200180546110e890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461111490614213565b80156111615780601f1061113657610100808354040283529160200191611161565b820191906000526020600020905b81548152906001019060200180831161114457829003601f168201915b5050505050815260200190600101906110c9565b505050506122c4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613e14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611245612203565b73ffffffffffffffffffffffffffffffffffffffff166112636113df565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613e94565b60405180910390fd5b6112c36000612685565b565b60606113d8826040518060400160405280600781526020017f3830303831333500000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156113cf57838290600052602060002001805461134290614213565b80601f016020809104026020016040519081016040528092919081815260200182805461136e90614213565b80156113bb5780601f10611390576101008083540402835291602001916113bb565b820191906000526020600020905b81548152906001019060200180831161139e57829003601f168201915b505050505081526020019060010190611323565b505050506122c4565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461141890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461144490614213565b80156114915780601f1061146657610100808354040283529160200191611491565b820191906000526020600020905b81548152906001019060200180831161147457829003601f168201915b5050505050905090565b60606115ae826040518060400160405280600381526020017f3432300000000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156115a557838290600052602060002001805461151890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461154490614213565b80156115915780601f1061156657610100808354040283529160200191611591565b820191906000526020600020905b81548152906001019060200180831161157457829003601f168201915b5050505050815260200190600101906114f9565b505050506122c4565b9050919050565b6002600a5414156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290613f74565b60405180910390fd5b6002600a819055506000811180156116145750611e6281105b611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613eb4565b60405180910390fd5b66b1a2bc2ec5000034101561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613f34565b60405180910390fd5b6116ae6116a8612203565b82612667565b6001600a8190555050565b6116c1612203565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690613db4565b60405180910390fd5b806005600061173c612203565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117e9612203565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182e9190613cd7565b60405180910390a35050565b61184b611845612203565b8361232d565b61188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190613f14565b60405180910390fd5b6118968484848461274b565b50505050565b60606118a661332f565b6040518061016001604052806101398152602001614b846101399139816000600f81106118d6576118d56143ac565b5b60200201819052506118e783611da6565b816001600f81106118fb576118fa6143ac565b5b60200201819052506040518060600160405280602b8152602001614da0602b9139816002600f81106119305761192f6143ac565b5b60200201819052506119418361106b565b816003600f8110611955576119546143ac565b5b6020020181905250604051806060016040528060288152602001614b5c60289139816004600f811061198a576119896143ac565b5b602002018190525061199b836112c5565b816005600f81106119af576119ae6143ac565b5b6020020181905250604051806060016040528060288152602001614ce660289139816006600f81106119e4576119e36143ac565b5b60200201819052506119f583611f9b565b816007600f8110611a0957611a086143ac565b5b6020020181905250604051806060016040528060298152602001614d0e60299139816008600f8110611a3e57611a3d6143ac565b5b6020020181905250611a4f8361149b565b816009600f8110611a6357611a626143ac565b5b6020020181905250604051806060016040528060298152602001614cbd6029913981600a600f8110611a9857611a976143ac565b5b6020020181905250611aa9836109f9565b81600b600f8110611abd57611abc6143ac565b5b6020020181905250604051806060016040528060298152602001614d376029913981600c600f8110611af257611af16143ac565b5b6020020181905250611b0383610d23565b81600d600f8110611b1757611b166143ac565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081600e600f8110611b6957611b686143ac565b5b60200201819052506000816000600f8110611b8757611b866143ac565b5b6020020151826001600f8110611ba057611b9f6143ac565b5b6020020151836002600f8110611bb957611bb86143ac565b5b6020020151846003600f8110611bd257611bd16143ac565b5b6020020151856004600f8110611beb57611bea6143ac565b5b6020020151866005600f8110611c0457611c036143ac565b5b6020020151876006600f8110611c1d57611c1c6143ac565b5b6020020151886007600f8110611c3657611c356143ac565b5b6020020151896008600f8110611c4f57611c4e6143ac565b5b6020020151604051602001611c6c99989796959493929190613b8a565b604051602081830303815290604052905080826009600f8110611c9257611c916143ac565b5b602002015183600a600f8110611cab57611caa6143ac565b5b602002015184600b600f8110611cc457611cc36143ac565b5b602002015185600c600f8110611cdd57611cdc6143ac565b5b602002015186600d600f8110611cf657611cf56143ac565b5b602002015187600e600f8110611d0f57611d0e6143ac565b5b6020020151604051602001611d2a9796959493929190613b25565b60405160208183030381529060405290506000611d77611d49866127a7565b611d5284612908565b604051602001611d63929190613c09565b604051602081830303815290604052612908565b905080604051602001611d8a9190613c4e565b6040516020818303038152906040529150819350505050919050565b60606000611db38361106b565b611dbc846112c5565b611dc585611f9b565b611dce8661149b565b611dd7876109f9565b611de088610d23565b604051602001611df596959493929190613acd565b604051602081830303815290604052905080915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eab612203565b73ffffffffffffffffffffffffffffffffffffffff16611ec96113df565b73ffffffffffffffffffffffffffffffffffffffff1614611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613e94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690613d54565b60405180910390fd5b611f9881612685565b50565b60606120ae826040518060400160405280600881526020017f3036333733333531000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156120a557838290600052602060002001805461201890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461204490614213565b80156120915780601f1061206657610100808354040283529160200191612091565b820191906000526020600020905b81548152906001019060200180831161207457829003601f168201915b505050505081526020019060010190611ff9565b505050506122c4565b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061218057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612190575061218f82612aa0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227e83610fb9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006122fa846122d5876127a7565b6040516020016122e6929190613aa9565b604051602081830303815290604052612b0a565b90508283518261230a91906142bf565b8151811061231b5761231a6143ac565b5b60200260200101519150509392505050565b600061233882612197565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90613dd4565b60405180910390fd5b600061238283610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f157508373ffffffffffffffffffffffffffffffffffffffff166123d98461085c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240257506124018185611e0f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242b82610fb9565b73ffffffffffffffffffffffffffffffffffffffff1614612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890613ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890613d94565b60405180910390fd5b6124fc838383612b3d565b61250760008261220b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125579190614129565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae9190614048565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612681828260405180602001604052806000815250612c51565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275684848461240b565b61276284848484612cac565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890613d34565b60405180910390fd5b50505050565b606060008214156127ef576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612903565b600082905060005b6000821461282157808061280a90614276565b915050600a8261281a919061409e565b91506127f7565b60008167ffffffffffffffff81111561283d5761283c6143db565b5b6040519080825280601f01601f19166020018201604052801561286f5781602001600182028036833780820191505090505b5090505b600085146128fc576001826128889190614129565b9150600a8561289791906142bf565b60306128a39190614048565b60f81b8183815181106128b9576128b86143ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128f5919061409e565b9450612873565b8093505050505b919050565b606060008251905060008114156129315760405180602001604052806000815250915050612a9b565b600060036002836129429190614048565b61294c919061409e565b600461295891906140cf565b905060006020826129699190614048565b67ffffffffffffffff811115612982576129816143db565b5b6040519080825280601f01601f1916602001820160405280156129b45781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614d60604091399050600181016020830160005b86811015612a585760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506129df565b506003860660018114612a725760028114612a8257612a8d565b613d3d60f01b6002830352612a8d565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081604051602001612b1d9190613a92565b6040516020818303038152906040528051906020012060001c9050919050565b612b48838383612e43565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b8b57612b8681612e48565b612bca565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bc957612bc88382612e91565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0d57612c0881612ffe565b612c4c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c4b57612c4a82826130cf565b5b5b505050565b612c5b838361314e565b612c686000848484612cac565b612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90613d34565b60405180910390fd5b505050565b6000612ccd8473ffffffffffffffffffffffffffffffffffffffff1661331c565b15612e36578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cf6612203565b8786866040518563ffffffff1660e01b8152600401612d189493929190613c8b565b602060405180830381600087803b158015612d3257600080fd5b505af1925050508015612d6357506040513d601f19601f82011682018060405250810190612d609190613620565b60015b612de6573d8060008114612d93576040519150601f19603f3d011682016040523d82523d6000602084013e612d98565b606091505b50600081511415612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590613d34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e3b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e9e84611185565b612ea89190614129565b9050600060076000848152602001908152602001600020549050818114612f8d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130129190614129565b9050600060096000848152602001908152602001600020549050600060088381548110613042576130416143ac565b5b906000526020600020015490508060088381548110613064576130636143ac565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130b3576130b261437d565b5b6001900381819060005260206000200160009055905550505050565b60006130da83611185565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b590613e54565b60405180910390fd5b6131c781612197565b15613207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fe90613d74565b60405180910390fd5b61321360008383612b3d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132639190614048565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101e00160405280600f905b606081526020019060019003908161333f5790505090565b600061336a61336584613fd4565b613faf565b9050828152602081018484840111156133865761338561440f565b5b6133918482856141d1565b509392505050565b6000813590506133a881614aff565b92915050565b6000813590506133bd81614b16565b92915050565b6000813590506133d281614b2d565b92915050565b6000815190506133e781614b2d565b92915050565b600082601f8301126134025761340161440a565b5b8135613412848260208601613357565b91505092915050565b60008135905061342a81614b44565b92915050565b60006020828403121561344657613445614419565b5b600061345484828501613399565b91505092915050565b6000806040838503121561347457613473614419565b5b600061348285828601613399565b925050602061349385828601613399565b9150509250929050565b6000806000606084860312156134b6576134b5614419565b5b60006134c486828701613399565b93505060206134d586828701613399565b92505060406134e68682870161341b565b9150509250925092565b6000806000806080858703121561350a57613509614419565b5b600061351887828801613399565b945050602061352987828801613399565b935050604061353a8782880161341b565b925050606085013567ffffffffffffffff81111561355b5761355a614414565b5b613567878288016133ed565b91505092959194509250565b6000806040838503121561358a57613589614419565b5b600061359885828601613399565b92505060206135a9858286016133ae565b9150509250929050565b600080604083850312156135ca576135c9614419565b5b60006135d885828601613399565b92505060206135e98582860161341b565b9150509250929050565b60006020828403121561360957613608614419565b5b6000613617848285016133c3565b91505092915050565b60006020828403121561363657613635614419565b5b6000613644848285016133d8565b91505092915050565b60006020828403121561366357613662614419565b5b60006136718482850161341b565b91505092915050565b6136838161415d565b82525050565b6136928161416f565b82525050565b60006136a382614005565b6136ad818561401b565b93506136bd8185602086016141e0565b6136c68161441e565b840191505092915050565b60006136dc82614010565b6136e6818561402c565b93506136f68185602086016141e0565b6136ff8161441e565b840191505092915050565b600061371582614010565b61371f818561403d565b935061372f8185602086016141e0565b80840191505092915050565b600061374860fd8361403d565b91506137538261442f565b60fd82019050919050565b600061376b602b8361402c565b915061377682614562565b604082019050919050565b600061378e60328361402c565b9150613799826145b1565b604082019050919050565b60006137b160268361402c565b91506137bc82614600565b604082019050919050565b60006137d4601c8361402c565b91506137df8261464f565b602082019050919050565b60006137f760248361402c565b915061380282614678565b604082019050919050565b600061381a60198361402c565b9150613825826146c7565b602082019050919050565b600061383d602c8361402c565b9150613848826146f0565b604082019050919050565b600061386060388361402c565b915061386b8261473f565b604082019050919050565b6000613883602a8361402c565b915061388e8261478e565b604082019050919050565b60006138a660298361402c565b91506138b1826147dd565b604082019050919050565b60006138c960028361403d565b91506138d48261482c565b600282019050919050565b60006138ec60208361402c565b91506138f782614855565b602082019050919050565b600061390f600f8361403d565b915061391a8261487e565b600f82019050919050565b6000613932602c8361402c565b915061393d826148a7565b604082019050919050565b600061395560208361402c565b9150613960826148f6565b602082019050919050565b600061397860108361402c565b91506139838261491f565b602082019050919050565b600061399b60298361402c565b91506139a682614948565b604082019050919050565b60006139be60218361402c565b91506139c982614997565b604082019050919050565b60006139e1601d8361403d565b91506139ec826149e6565b601d82019050919050565b6000613a0460318361402c565b9150613a0f82614a0f565b604082019050919050565b6000613a2760108361402c565b9150613a3282614a5e565b602082019050919050565b6000613a4a602c8361402c565b9150613a5582614a87565b604082019050919050565b6000613a6d601f8361402c565b9150613a7882614ad6565b602082019050919050565b613a8c816141c7565b82525050565b6000613a9e828461370a565b915081905092915050565b6000613ab5828561370a565b9150613ac1828461370a565b91508190509392505050565b6000613ad9828961370a565b9150613ae5828861370a565b9150613af1828761370a565b9150613afd828661370a565b9150613b09828561370a565b9150613b15828461370a565b9150819050979650505050505050565b6000613b31828a61370a565b9150613b3d828961370a565b9150613b49828861370a565b9150613b55828761370a565b9150613b61828661370a565b9150613b6d828561370a565b9150613b79828461370a565b915081905098975050505050505050565b6000613b96828c61370a565b9150613ba2828b61370a565b9150613bae828a61370a565b9150613bba828961370a565b9150613bc6828861370a565b9150613bd2828761370a565b9150613bde828661370a565b9150613bea828561370a565b9150613bf6828461370a565b91508190509a9950505050505050505050565b6000613c1482613902565b9150613c20828561370a565b9150613c2b8261373b565b9150613c37828461370a565b9150613c42826138bc565b91508190509392505050565b6000613c59826139d4565b9150613c65828461370a565b915081905092915050565b6000602082019050613c85600083018461367a565b92915050565b6000608082019050613ca0600083018761367a565b613cad602083018661367a565b613cba6040830185613a83565b8181036060830152613ccc8184613698565b905095945050505050565b6000602082019050613cec6000830184613689565b92915050565b60006020820190508181036000830152613d0c81846136d1565b905092915050565b60006020820190508181036000830152613d2d8161375e565b9050919050565b60006020820190508181036000830152613d4d81613781565b9050919050565b60006020820190508181036000830152613d6d816137a4565b9050919050565b60006020820190508181036000830152613d8d816137c7565b9050919050565b60006020820190508181036000830152613dad816137ea565b9050919050565b60006020820190508181036000830152613dcd8161380d565b9050919050565b60006020820190508181036000830152613ded81613830565b9050919050565b60006020820190508181036000830152613e0d81613853565b9050919050565b60006020820190508181036000830152613e2d81613876565b9050919050565b60006020820190508181036000830152613e4d81613899565b9050919050565b60006020820190508181036000830152613e6d816138df565b9050919050565b60006020820190508181036000830152613e8d81613925565b9050919050565b60006020820190508181036000830152613ead81613948565b9050919050565b60006020820190508181036000830152613ecd8161396b565b9050919050565b60006020820190508181036000830152613eed8161398e565b9050919050565b60006020820190508181036000830152613f0d816139b1565b9050919050565b60006020820190508181036000830152613f2d816139f7565b9050919050565b60006020820190508181036000830152613f4d81613a1a565b9050919050565b60006020820190508181036000830152613f6d81613a3d565b9050919050565b60006020820190508181036000830152613f8d81613a60565b9050919050565b6000602082019050613fa96000830184613a83565b92915050565b6000613fb9613fca565b9050613fc58282614245565b919050565b6000604051905090565b600067ffffffffffffffff821115613fef57613fee6143db565b5b613ff88261441e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614053826141c7565b915061405e836141c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614093576140926142f0565b5b828201905092915050565b60006140a9826141c7565b91506140b4836141c7565b9250826140c4576140c361431f565b5b828204905092915050565b60006140da826141c7565b91506140e5836141c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561411e5761411d6142f0565b5b828202905092915050565b6000614134826141c7565b915061413f836141c7565b925082821015614152576141516142f0565b5b828203905092915050565b6000614168826141a7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141fe5780820151818401526020810190506141e3565b8381111561420d576000848401525b50505050565b6000600282049050600182168061422b57607f821691505b6020821081141561423f5761423e61434e565b5b50919050565b61424e8261441e565b810181811067ffffffffffffffff8211171561426d5761426c6143db565b5b80604052505050565b6000614281826141c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142b4576142b36142f0565b5b600182019050919050565b60006142ca826141c7565b91506142d5836141c7565b9250826142e5576142e461431f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f222c20226465736372697074696f6e223a202248657820697320612072616e6460008201527f6f6d697a65642068657861646563696d616c2073657175656e63652067656e6560208201527f726174656420616e642073746f726564206f6e20636861696e2e20496d61676560408201527f7320616e64206f746865722066756e6374696f6e616c6974792061726520696e60608201527f74656e74696f6e616c6c79206f6d697474656420666f72206f7468657273207460808201527f6f20696e746572707265742e204665656c206672656520746f2075736520486560a08201527f7820696e20616e792077617920796f752077616e742e222c2022696d6167652260c08201527f3a2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000060e082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7b226e616d65223a202248657820230000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614b088161415d565b8114614b1357600080fd5b50565b614b1f8161416f565b8114614b2a57600080fd5b50565b614b368161417b565b8114614b4157600080fd5b50565b614b4d816141c7565b8114614b5857600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d202e686578636f6c6f72207b666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b7d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d22686578636f6c6f72222066696c6c3d22233c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f223e233c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220ece03610efeaef68be835e17d0274f789ad03a9df11f1330dae9c49e50c6716f64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063667386f7116100f7578063a0712d6811610095578063c9f7c1f911610064578063c9f7c1f914610670578063e985e9c5146106ad578063f2fde38b146106ea578063fa7f71b114610713576101c2565b8063a0712d68146105c5578063a22cb465146105e1578063b88d4fde1461060a578063c87b56dd14610633576101c2565b80638aa001fc116100d15780638aa001fc146104f55780638da5cb5b1461053257806395d89b411461055d5780639ec29b8214610588576101c2565b8063667386f71461046457806370a08231146104a1578063715018a6146104de576101c2565b80632f745c591161016457806342d9d8761161013e57806342d9d876146103965780634dbe5889146103d35780634f6ccce7146103ea5780636352211e14610427576101c2565b80632f745c59146103265780633ccfd60b1461036357806342842e0e1461036d576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780630b2503a61461029557806318160ddd146102d257806323b872dd146102fd576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e991906135f3565b610750565b6040516101fb9190613cd7565b60405180910390f35b34801561021057600080fd5b506102196107ca565b6040516102269190613cf2565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061364d565b61085c565b6040516102639190613c70565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e91906135b3565b6108e1565b005b3480156102a157600080fd5b506102bc60048036038101906102b7919061364d565b6109f9565b6040516102c99190613cf2565b60405180910390f35b3480156102de57600080fd5b506102e7610b13565b6040516102f49190613f94565b60405180910390f35b34801561030957600080fd5b50610324600480360381019061031f919061349d565b610b20565b005b34801561033257600080fd5b5061034d600480360381019061034891906135b3565b610b80565b60405161035a9190613f94565b60405180910390f35b61036b610c25565b005b34801561037957600080fd5b50610394600480360381019061038f919061349d565b610d03565b005b3480156103a257600080fd5b506103bd60048036038101906103b8919061364d565b610d23565b6040516103ca9190613cf2565b60405180910390f35b3480156103df57600080fd5b506103e8610e3d565b005b3480156103f657600080fd5b50610411600480360381019061040c919061364d565b610f48565b60405161041e9190613f94565b60405180910390f35b34801561043357600080fd5b5061044e6004803603810190610449919061364d565b610fb9565b60405161045b9190613c70565b60405180910390f35b34801561047057600080fd5b5061048b6004803603810190610486919061364d565b61106b565b6040516104989190613cf2565b60405180910390f35b3480156104ad57600080fd5b506104c860048036038101906104c39190613430565b611185565b6040516104d59190613f94565b60405180910390f35b3480156104ea57600080fd5b506104f361123d565b005b34801561050157600080fd5b5061051c6004803603810190610517919061364d565b6112c5565b6040516105299190613cf2565b60405180910390f35b34801561053e57600080fd5b506105476113df565b6040516105549190613c70565b60405180910390f35b34801561056957600080fd5b50610572611409565b60405161057f9190613cf2565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa919061364d565b61149b565b6040516105bc9190613cf2565b60405180910390f35b6105df60048036038101906105da919061364d565b6115b5565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613573565b6116b9565b005b34801561061657600080fd5b50610631600480360381019061062c91906134f0565b61183a565b005b34801561063f57600080fd5b5061065a6004803603810190610655919061364d565b61189c565b6040516106679190613cf2565b60405180910390f35b34801561067c57600080fd5b506106976004803603810190610692919061364d565b611da6565b6040516106a49190613cf2565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf919061345d565b611e0f565b6040516106e19190613cd7565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c9190613430565b611ea3565b005b34801561071f57600080fd5b5061073a6004803603810190610735919061364d565b611f9b565b6040516107479190613cf2565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107c357506107c2826120b5565b5b9050919050565b6060600080546107d990614213565b80601f016020809104026020016040519081016040528092919081815260200182805461080590614213565b80156108525780601f1061082757610100808354040283529160200191610852565b820191906000526020600020905b81548152906001019060200180831161083557829003601f168201915b5050505050905090565b600061086782612197565b6108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d90613e74565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108ec82610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561095d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095490613ef4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661097c612203565b73ffffffffffffffffffffffffffffffffffffffff1614806109ab57506109aa816109a5612203565b611e0f565b5b6109ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e190613df4565b60405180910390fd5b6109f4838361220b565b505050565b6060610b0c826040518060400160405280600481526020017f3133333700000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610b03578382906000526020600020018054610a7690614213565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa290614213565b8015610aef5780601f10610ac457610100808354040283529160200191610aef565b820191906000526020600020905b815481529060010190602001808311610ad257829003601f168201915b505050505081526020019060010190610a57565b505050506122c4565b9050919050565b6000600880549050905090565b610b31610b2b612203565b8261232d565b610b70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6790613f14565b60405180910390fd5b610b7b83838361240b565b505050565b6000610b8b83611185565b8210610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390613d14565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610c2d612203565b73ffffffffffffffffffffffffffffffffffffffff16610c4b6113df565b73ffffffffffffffffffffffffffffffffffffffff1614610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890613e94565b60405180910390fd5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d0157600080fd5b565b610d1e8383836040518060200160405280600081525061183a565b505050565b6060610e36826040518060400160405280600481526020017f3639363900000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b82821015610e2d578382906000526020600020018054610da090614213565b80601f0160208091040260200160405190810160405280929190818152602001828054610dcc90614213565b8015610e195780601f10610dee57610100808354040283529160200191610e19565b820191906000526020600020905b815481529060010190602001808311610dfc57829003601f168201915b505050505081526020019060010190610d81565b505050506122c4565b9050919050565b6002600a541415610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90613f74565b60405180910390fd5b6002600a81905550610e93612203565b73ffffffffffffffffffffffffffffffffffffffff16610eb16113df565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90613e94565b60405180910390fd5b6000611e6290505b611f41811015610f3d57610f2a610f246113df565b82612667565b8080610f3590614276565b915050610f0f565b506001600a81905550565b6000610f52610b13565b8210610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a90613f54565b60405180910390fd5b60088281548110610fa757610fa66143ac565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990613e34565b60405180910390fd5b80915050919050565b606061117e826040518060400160405280600381526020017f3737370000000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156111755783829060005260206000200180546110e890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461111490614213565b80156111615780601f1061113657610100808354040283529160200191611161565b820191906000526020600020905b81548152906001019060200180831161114457829003601f168201915b5050505050815260200190600101906110c9565b505050506122c4565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613e14565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611245612203565b73ffffffffffffffffffffffffffffffffffffffff166112636113df565b73ffffffffffffffffffffffffffffffffffffffff16146112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b090613e94565b60405180910390fd5b6112c36000612685565b565b60606113d8826040518060400160405280600781526020017f3830303831333500000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156113cf57838290600052602060002001805461134290614213565b80601f016020809104026020016040519081016040528092919081815260200182805461136e90614213565b80156113bb5780601f10611390576101008083540402835291602001916113bb565b820191906000526020600020905b81548152906001019060200180831161139e57829003601f168201915b505050505081526020019060010190611323565b505050506122c4565b9050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461141890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461144490614213565b80156114915780601f1061146657610100808354040283529160200191611491565b820191906000526020600020905b81548152906001019060200180831161147457829003601f168201915b5050505050905090565b60606115ae826040518060400160405280600381526020017f3432300000000000000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156115a557838290600052602060002001805461151890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461154490614213565b80156115915780601f1061156657610100808354040283529160200191611591565b820191906000526020600020905b81548152906001019060200180831161157457829003601f168201915b5050505050815260200190600101906114f9565b505050506122c4565b9050919050565b6002600a5414156115fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f290613f74565b60405180910390fd5b6002600a819055506000811180156116145750611e6281105b611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613eb4565b60405180910390fd5b66b1a2bc2ec5000034101561169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613f34565b60405180910390fd5b6116ae6116a8612203565b82612667565b6001600a8190555050565b6116c1612203565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690613db4565b60405180910390fd5b806005600061173c612203565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117e9612203565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161182e9190613cd7565b60405180910390a35050565b61184b611845612203565b8361232d565b61188a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188190613f14565b60405180910390fd5b6118968484848461274b565b50505050565b60606118a661332f565b6040518061016001604052806101398152602001614b846101399139816000600f81106118d6576118d56143ac565b5b60200201819052506118e783611da6565b816001600f81106118fb576118fa6143ac565b5b60200201819052506040518060600160405280602b8152602001614da0602b9139816002600f81106119305761192f6143ac565b5b60200201819052506119418361106b565b816003600f8110611955576119546143ac565b5b6020020181905250604051806060016040528060288152602001614b5c60289139816004600f811061198a576119896143ac565b5b602002018190525061199b836112c5565b816005600f81106119af576119ae6143ac565b5b6020020181905250604051806060016040528060288152602001614ce660289139816006600f81106119e4576119e36143ac565b5b60200201819052506119f583611f9b565b816007600f8110611a0957611a086143ac565b5b6020020181905250604051806060016040528060298152602001614d0e60299139816008600f8110611a3e57611a3d6143ac565b5b6020020181905250611a4f8361149b565b816009600f8110611a6357611a626143ac565b5b6020020181905250604051806060016040528060298152602001614cbd6029913981600a600f8110611a9857611a976143ac565b5b6020020181905250611aa9836109f9565b81600b600f8110611abd57611abc6143ac565b5b6020020181905250604051806060016040528060298152602001614d376029913981600c600f8110611af257611af16143ac565b5b6020020181905250611b0383610d23565b81600d600f8110611b1757611b166143ac565b5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e0000000000000000000000000000000000000081525081600e600f8110611b6957611b686143ac565b5b60200201819052506000816000600f8110611b8757611b866143ac565b5b6020020151826001600f8110611ba057611b9f6143ac565b5b6020020151836002600f8110611bb957611bb86143ac565b5b6020020151846003600f8110611bd257611bd16143ac565b5b6020020151856004600f8110611beb57611bea6143ac565b5b6020020151866005600f8110611c0457611c036143ac565b5b6020020151876006600f8110611c1d57611c1c6143ac565b5b6020020151886007600f8110611c3657611c356143ac565b5b6020020151896008600f8110611c4f57611c4e6143ac565b5b6020020151604051602001611c6c99989796959493929190613b8a565b604051602081830303815290604052905080826009600f8110611c9257611c916143ac565b5b602002015183600a600f8110611cab57611caa6143ac565b5b602002015184600b600f8110611cc457611cc36143ac565b5b602002015185600c600f8110611cdd57611cdc6143ac565b5b602002015186600d600f8110611cf657611cf56143ac565b5b602002015187600e600f8110611d0f57611d0e6143ac565b5b6020020151604051602001611d2a9796959493929190613b25565b60405160208183030381529060405290506000611d77611d49866127a7565b611d5284612908565b604051602001611d63929190613c09565b604051602081830303815290604052612908565b905080604051602001611d8a9190613c4e565b6040516020818303038152906040529150819350505050919050565b60606000611db38361106b565b611dbc846112c5565b611dc585611f9b565b611dce8661149b565b611dd7876109f9565b611de088610d23565b604051602001611df596959493929190613acd565b604051602081830303815290604052905080915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eab612203565b73ffffffffffffffffffffffffffffffffffffffff16611ec96113df565b73ffffffffffffffffffffffffffffffffffffffff1614611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613e94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8690613d54565b60405180910390fd5b611f9881612685565b50565b60606120ae826040518060400160405280600881526020017f3036333733333531000000000000000000000000000000000000000000000000815250600c805480602002602001604051908101604052809291908181526020016000905b828210156120a557838290600052602060002001805461201890614213565b80601f016020809104026020016040519081016040528092919081815260200182805461204490614213565b80156120915780601f1061206657610100808354040283529160200191612091565b820191906000526020600020905b81548152906001019060200180831161207457829003601f168201915b505050505081526020019060010190611ff9565b505050506122c4565b9050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061218057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612190575061218f82612aa0565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661227e83610fb9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060006122fa846122d5876127a7565b6040516020016122e6929190613aa9565b604051602081830303815290604052612b0a565b90508283518261230a91906142bf565b8151811061231b5761231a6143ac565b5b60200260200101519150509392505050565b600061233882612197565b612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90613dd4565b60405180910390fd5b600061238283610fb9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123f157508373ffffffffffffffffffffffffffffffffffffffff166123d98461085c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061240257506124018185611e0f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661242b82610fb9565b73ffffffffffffffffffffffffffffffffffffffff1614612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890613ed4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e890613d94565b60405180910390fd5b6124fc838383612b3d565b61250760008261220b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125579190614129565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae9190614048565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612681828260405180602001604052806000815250612c51565b5050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61275684848461240b565b61276284848484612cac565b6127a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279890613d34565b60405180910390fd5b50505050565b606060008214156127ef576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612903565b600082905060005b6000821461282157808061280a90614276565b915050600a8261281a919061409e565b91506127f7565b60008167ffffffffffffffff81111561283d5761283c6143db565b5b6040519080825280601f01601f19166020018201604052801561286f5781602001600182028036833780820191505090505b5090505b600085146128fc576001826128889190614129565b9150600a8561289791906142bf565b60306128a39190614048565b60f81b8183815181106128b9576128b86143ac565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128f5919061409e565b9450612873565b8093505050505b919050565b606060008251905060008114156129315760405180602001604052806000815250915050612a9b565b600060036002836129429190614048565b61294c919061409e565b600461295891906140cf565b905060006020826129699190614048565b67ffffffffffffffff811115612982576129816143db565b5b6040519080825280601f01601f1916602001820160405280156129b45781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614d60604091399050600181016020830160005b86811015612a585760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506129df565b506003860660018114612a725760028114612a8257612a8d565b613d3d60f01b6002830352612a8d565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081604051602001612b1d9190613a92565b6040516020818303038152906040528051906020012060001c9050919050565b612b48838383612e43565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b8b57612b8681612e48565b612bca565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bc957612bc88382612e91565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c0d57612c0881612ffe565b612c4c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c4b57612c4a82826130cf565b5b5b505050565b612c5b838361314e565b612c686000848484612cac565b612ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9e90613d34565b60405180910390fd5b505050565b6000612ccd8473ffffffffffffffffffffffffffffffffffffffff1661331c565b15612e36578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612cf6612203565b8786866040518563ffffffff1660e01b8152600401612d189493929190613c8b565b602060405180830381600087803b158015612d3257600080fd5b505af1925050508015612d6357506040513d601f19601f82011682018060405250810190612d609190613620565b60015b612de6573d8060008114612d93576040519150601f19603f3d011682016040523d82523d6000602084013e612d98565b606091505b50600081511415612dde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd590613d34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e3b565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612e9e84611185565b612ea89190614129565b9050600060076000848152602001908152602001600020549050818114612f8d576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506130129190614129565b9050600060096000848152602001908152602001600020549050600060088381548110613042576130416143ac565b5b906000526020600020015490508060088381548110613064576130636143ac565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806130b3576130b261437d565b5b6001900381819060005260206000200160009055905550505050565b60006130da83611185565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b590613e54565b60405180910390fd5b6131c781612197565b15613207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131fe90613d74565b60405180910390fd5b61321360008383612b3d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132639190614048565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101e00160405280600f905b606081526020019060019003908161333f5790505090565b600061336a61336584613fd4565b613faf565b9050828152602081018484840111156133865761338561440f565b5b6133918482856141d1565b509392505050565b6000813590506133a881614aff565b92915050565b6000813590506133bd81614b16565b92915050565b6000813590506133d281614b2d565b92915050565b6000815190506133e781614b2d565b92915050565b600082601f8301126134025761340161440a565b5b8135613412848260208601613357565b91505092915050565b60008135905061342a81614b44565b92915050565b60006020828403121561344657613445614419565b5b600061345484828501613399565b91505092915050565b6000806040838503121561347457613473614419565b5b600061348285828601613399565b925050602061349385828601613399565b9150509250929050565b6000806000606084860312156134b6576134b5614419565b5b60006134c486828701613399565b93505060206134d586828701613399565b92505060406134e68682870161341b565b9150509250925092565b6000806000806080858703121561350a57613509614419565b5b600061351887828801613399565b945050602061352987828801613399565b935050604061353a8782880161341b565b925050606085013567ffffffffffffffff81111561355b5761355a614414565b5b613567878288016133ed565b91505092959194509250565b6000806040838503121561358a57613589614419565b5b600061359885828601613399565b92505060206135a9858286016133ae565b9150509250929050565b600080604083850312156135ca576135c9614419565b5b60006135d885828601613399565b92505060206135e98582860161341b565b9150509250929050565b60006020828403121561360957613608614419565b5b6000613617848285016133c3565b91505092915050565b60006020828403121561363657613635614419565b5b6000613644848285016133d8565b91505092915050565b60006020828403121561366357613662614419565b5b60006136718482850161341b565b91505092915050565b6136838161415d565b82525050565b6136928161416f565b82525050565b60006136a382614005565b6136ad818561401b565b93506136bd8185602086016141e0565b6136c68161441e565b840191505092915050565b60006136dc82614010565b6136e6818561402c565b93506136f68185602086016141e0565b6136ff8161441e565b840191505092915050565b600061371582614010565b61371f818561403d565b935061372f8185602086016141e0565b80840191505092915050565b600061374860fd8361403d565b91506137538261442f565b60fd82019050919050565b600061376b602b8361402c565b915061377682614562565b604082019050919050565b600061378e60328361402c565b9150613799826145b1565b604082019050919050565b60006137b160268361402c565b91506137bc82614600565b604082019050919050565b60006137d4601c8361402c565b91506137df8261464f565b602082019050919050565b60006137f760248361402c565b915061380282614678565b604082019050919050565b600061381a60198361402c565b9150613825826146c7565b602082019050919050565b600061383d602c8361402c565b9150613848826146f0565b604082019050919050565b600061386060388361402c565b915061386b8261473f565b604082019050919050565b6000613883602a8361402c565b915061388e8261478e565b604082019050919050565b60006138a660298361402c565b91506138b1826147dd565b604082019050919050565b60006138c960028361403d565b91506138d48261482c565b600282019050919050565b60006138ec60208361402c565b91506138f782614855565b602082019050919050565b600061390f600f8361403d565b915061391a8261487e565b600f82019050919050565b6000613932602c8361402c565b915061393d826148a7565b604082019050919050565b600061395560208361402c565b9150613960826148f6565b602082019050919050565b600061397860108361402c565b91506139838261491f565b602082019050919050565b600061399b60298361402c565b91506139a682614948565b604082019050919050565b60006139be60218361402c565b91506139c982614997565b604082019050919050565b60006139e1601d8361403d565b91506139ec826149e6565b601d82019050919050565b6000613a0460318361402c565b9150613a0f82614a0f565b604082019050919050565b6000613a2760108361402c565b9150613a3282614a5e565b602082019050919050565b6000613a4a602c8361402c565b9150613a5582614a87565b604082019050919050565b6000613a6d601f8361402c565b9150613a7882614ad6565b602082019050919050565b613a8c816141c7565b82525050565b6000613a9e828461370a565b915081905092915050565b6000613ab5828561370a565b9150613ac1828461370a565b91508190509392505050565b6000613ad9828961370a565b9150613ae5828861370a565b9150613af1828761370a565b9150613afd828661370a565b9150613b09828561370a565b9150613b15828461370a565b9150819050979650505050505050565b6000613b31828a61370a565b9150613b3d828961370a565b9150613b49828861370a565b9150613b55828761370a565b9150613b61828661370a565b9150613b6d828561370a565b9150613b79828461370a565b915081905098975050505050505050565b6000613b96828c61370a565b9150613ba2828b61370a565b9150613bae828a61370a565b9150613bba828961370a565b9150613bc6828861370a565b9150613bd2828761370a565b9150613bde828661370a565b9150613bea828561370a565b9150613bf6828461370a565b91508190509a9950505050505050505050565b6000613c1482613902565b9150613c20828561370a565b9150613c2b8261373b565b9150613c37828461370a565b9150613c42826138bc565b91508190509392505050565b6000613c59826139d4565b9150613c65828461370a565b915081905092915050565b6000602082019050613c85600083018461367a565b92915050565b6000608082019050613ca0600083018761367a565b613cad602083018661367a565b613cba6040830185613a83565b8181036060830152613ccc8184613698565b905095945050505050565b6000602082019050613cec6000830184613689565b92915050565b60006020820190508181036000830152613d0c81846136d1565b905092915050565b60006020820190508181036000830152613d2d8161375e565b9050919050565b60006020820190508181036000830152613d4d81613781565b9050919050565b60006020820190508181036000830152613d6d816137a4565b9050919050565b60006020820190508181036000830152613d8d816137c7565b9050919050565b60006020820190508181036000830152613dad816137ea565b9050919050565b60006020820190508181036000830152613dcd8161380d565b9050919050565b60006020820190508181036000830152613ded81613830565b9050919050565b60006020820190508181036000830152613e0d81613853565b9050919050565b60006020820190508181036000830152613e2d81613876565b9050919050565b60006020820190508181036000830152613e4d81613899565b9050919050565b60006020820190508181036000830152613e6d816138df565b9050919050565b60006020820190508181036000830152613e8d81613925565b9050919050565b60006020820190508181036000830152613ead81613948565b9050919050565b60006020820190508181036000830152613ecd8161396b565b9050919050565b60006020820190508181036000830152613eed8161398e565b9050919050565b60006020820190508181036000830152613f0d816139b1565b9050919050565b60006020820190508181036000830152613f2d816139f7565b9050919050565b60006020820190508181036000830152613f4d81613a1a565b9050919050565b60006020820190508181036000830152613f6d81613a3d565b9050919050565b60006020820190508181036000830152613f8d81613a60565b9050919050565b6000602082019050613fa96000830184613a83565b92915050565b6000613fb9613fca565b9050613fc58282614245565b919050565b6000604051905090565b600067ffffffffffffffff821115613fef57613fee6143db565b5b613ff88261441e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614053826141c7565b915061405e836141c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614093576140926142f0565b5b828201905092915050565b60006140a9826141c7565b91506140b4836141c7565b9250826140c4576140c361431f565b5b828204905092915050565b60006140da826141c7565b91506140e5836141c7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561411e5761411d6142f0565b5b828202905092915050565b6000614134826141c7565b915061413f836141c7565b925082821015614152576141516142f0565b5b828203905092915050565b6000614168826141a7565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141fe5780820151818401526020810190506141e3565b8381111561420d576000848401525b50505050565b6000600282049050600182168061422b57607f821691505b6020821081141561423f5761423e61434e565b5b50919050565b61424e8261441e565b810181811067ffffffffffffffff8211171561426d5761426c6143db565b5b80604052505050565b6000614281826141c7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142b4576142b36142f0565b5b600182019050919050565b60006142ca826141c7565b91506142d5836141c7565b9250826142e5576142e461431f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f222c20226465736372697074696f6e223a202248657820697320612072616e6460008201527f6f6d697a65642068657861646563696d616c2073657175656e63652067656e6560208201527f726174656420616e642073746f726564206f6e20636861696e2e20496d61676560408201527f7320616e64206f746865722066756e6374696f6e616c6974792061726520696e60608201527f74656e74696f6e616c6c79206f6d697474656420666f72206f7468657273207460808201527f6f20696e746572707265742e204665656c206672656520746f2075736520486560a08201527f7820696e20616e792077617920796f752077616e742e222c2022696d6167652260c08201527f3a2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000060e082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7b226e616d65223a202248657820230000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614b088161415d565b8114614b1357600080fd5b50565b614b1f8161416f565b8114614b2a57600080fd5b50565b614b368161417b565b8114614b4157600080fd5b50565b614b4d816141c7565b8114614b5857600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d202e686578636f6c6f72207b666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b7d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d22686578636f6c6f72222066696c6c3d22233c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f223e233c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220ece03610efeaef68be835e17d0274f789ad03a9df11f1330dae9c49e50c6716f64736f6c63430008070033
Deployed Bytecode Sourcemap
46430:5504:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39700:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27592:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29151:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28674:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47529:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40340:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30041:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40008:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51030:115;;;:::i;:::-;;30451:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47665:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50866:156;;;;;;;;;;;;;:::i;:::-;;40530:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27286:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46978:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27016:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2521:94;;;;;;;;;;;;;:::i;:::-;;47113:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1870:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27761:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47393:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50605:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29444:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30707:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48374:2223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47801:281;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29810:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2770:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47253:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39700:224;39802:4;39841:35;39826:50;;;:11;:50;;;;:90;;;;39880:36;39904:11;39880:23;:36::i;:::-;39826:90;39819:97;;39700:224;;;:::o;27592:100::-;27646:13;27679:5;27672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27592:100;:::o;29151:221::-;29227:7;29255:16;29263:7;29255;:16::i;:::-;29247:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29340:15;:24;29356:7;29340:24;;;;;;;;;;;;;;;;;;;;;29333:31;;29151:221;;;:::o;28674:411::-;28755:13;28771:23;28786:7;28771:14;:23::i;:::-;28755:39;;28819:5;28813:11;;:2;:11;;;;28805:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28913:5;28897:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28922:37;28939:5;28946:12;:10;:12::i;:::-;28922:16;:37::i;:::-;28897:62;28875:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;29056:21;29065:2;29069:7;29056:8;:21::i;:::-;28744:341;28674:411;;:::o;47529:128::-;47585:13;47618:31;47624:7;47618:31;;;;;;;;;;;;;;;;;47641:7;47618:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:31::i;:::-;47611:38;;47529:128;;;:::o;40340:113::-;40401:7;40428:10;:17;;;;40421:24;;40340:113;:::o;30041:339::-;30236:41;30255:12;:10;:12::i;:::-;30269:7;30236:18;:41::i;:::-;30228:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30344:28;30354:4;30360:2;30364:7;30344:9;:28::i;:::-;30041:339;;;:::o;40008:256::-;40105:7;40141:23;40158:5;40141:16;:23::i;:::-;40133:5;:31;40125:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40230:12;:19;40243:5;40230:19;;;;;;;;;;;;;;;:26;40250:5;40230:26;;;;;;;;;;;;40223:33;;40008:256;;;;:::o;51030:115::-;2101:12;:10;:12::i;:::-;2090:23;;:7;:5;:7::i;:::-;:23;;;2082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51102:5:::1;;;;;;;;;;;51094:19;;:42;51114:21;51094:42;;;;;;;;;;;;;;;;;;;;;;;51086:51;;;::::0;::::1;;51030:115::o:0;30451:185::-;30589:39;30606:4;30612:2;30616:7;30589:39;;;;;;;;;;;;:16;:39::i;:::-;30451:185;;;:::o;47665:128::-;47721:13;47754:31;47760:7;47754:31;;;;;;;;;;;;;;;;;47777:7;47754:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:31::i;:::-;47747:38;;47665:128;;;:::o;50866:156::-;4897:1;5493:7;;:19;;5485:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4897:1;5626:7;:18;;;;2101:12:::1;:10;:12::i;:::-;2090:23;;:7;:5;:7::i;:::-;:23;;;2082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50934:9:::2;50946:4;50934:16;;50929:86;50956:4;50952:1;:8;50929:86;;;50982:21;50992:7;:5;:7::i;:::-;51001:1;50982:9;:21::i;:::-;50962:3;;;;;:::i;:::-;;;;50929:86;;;;4853:1:::0;5805:7;:22;;;;50866:156::o;40530:233::-;40605:7;40641:30;:28;:30::i;:::-;40633:5;:38;40625:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40738:10;40749:5;40738:17;;;;;;;;:::i;:::-;;;;;;;;;;40731:24;;40530:233;;;:::o;27286:239::-;27358:7;27378:13;27394:7;:16;27402:7;27394:16;;;;;;;;;;;;;;;;;;;;;27378:32;;27446:1;27429:19;;:5;:19;;;;27421:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27512:5;27505:12;;;27286:239;;;:::o;46978:127::-;47034:13;47067:30;47073:7;47067:30;;;;;;;;;;;;;;;;;47089:7;47067:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:30::i;:::-;47060:37;;46978:127;;;:::o;27016:208::-;27088:7;27133:1;27116:19;;:5;:19;;;;27108:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27200:9;:16;27210:5;27200:16;;;;;;;;;;;;;;;;27193:23;;27016:208;;;:::o;2521:94::-;2101:12;:10;:12::i;:::-;2090:23;;:7;:5;:7::i;:::-;:23;;;2082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2586:21:::1;2604:1;2586:9;:21::i;:::-;2521:94::o:0;47113:132::-;47170:13;47203:34;47209:7;47203:34;;;;;;;;;;;;;;;;;47229:7;47203:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:34::i;:::-;47196:41;;47113:132;;;:::o;1870:87::-;1916:7;1943:6;;;;;;;;;;;1936:13;;1870:87;:::o;27761:104::-;27817:13;27850:7;27843:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27761:104;:::o;47393:128::-;47450:13;47483:30;47489:7;47483:30;;;;;;;;;;;;;;;;;47505:7;47483:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:30::i;:::-;47476:37;;47393:128;;;:::o;50605:249::-;4897:1;5493:7;;:19;;5485:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4897:1;5626:7;:18;;;;50693:1:::1;50683:7;:11;:29;;;;;50708:4;50698:7;:14;50683:29;50675:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;50765:17;50752:9;:30;;50744:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;50814:32;50824:12;:10;:12::i;:::-;50838:7;50814:9;:32::i;:::-;4853:1:::0;5805:7;:22;;;;50605:249;:::o;29444:295::-;29559:12;:10;:12::i;:::-;29547:24;;:8;:24;;;;29539:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29659:8;29614:18;:32;29633:12;:10;:12::i;:::-;29614:32;;;;;;;;;;;;;;;:42;29647:8;29614:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29712:8;29683:48;;29698:12;:10;:12::i;:::-;29683:48;;;29722:8;29683:48;;;;;;:::i;:::-;;;;;;;;29444:295;;:::o;30707:328::-;30882:41;30901:12;:10;:12::i;:::-;30915:7;30882:18;:41::i;:::-;30874:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30988:39;31002:4;31008:2;31012:7;31021:5;30988:13;:39::i;:::-;30707:328;;;;:::o;48374:2223::-;48439:13;48465:23;;:::i;:::-;48499:326;;;;;;;;;;;;;;;;;:5;48505:1;48499:8;;;;;;;:::i;:::-;;;;;:326;;;;48849:15;48856:7;48849:6;:15::i;:::-;48838:5;48844:1;48838:8;;;;;;;:::i;:::-;;;;;:26;;;;48877:56;;;;;;;;;;;;;;;;;:5;48883:1;48877:8;;;;;;;:::i;:::-;;;;;:56;;;;48957:17;48966:7;48957:8;:17::i;:::-;48946:5;48952:1;48946:8;;;;;;;:::i;:::-;;;;;:28;;;;48987:53;;;;;;;;;;;;;;;;;:5;48993:1;48987:8;;;;;;;:::i;:::-;;;;;:53;;;;49064:18;49074:7;49064:9;:18::i;:::-;49053:5;49059:1;49053:8;;;;;;;:::i;:::-;;;;;:29;;;;49095:53;;;;;;;;;;;;;;;;;:5;49101:1;49095:8;;;;;;;:::i;:::-;;;;;:53;;;;49172:17;49181:7;49172:8;:17::i;:::-;49161:5;49167:1;49161:8;;;;;;;:::i;:::-;;;;;:28;;;;49202:54;;;;;;;;;;;;;;;;;:5;49208:1;49202:8;;;;;;;:::i;:::-;;;;;:54;;;;49280:18;49290:7;49280:9;:18::i;:::-;49269:5;49275:1;49269:8;;;;;;;:::i;:::-;;;;;:29;;;;49311:55;;;;;;;;;;;;;;;;;:5;49317:2;49311:9;;;;;;;:::i;:::-;;;;;:55;;;;49391:17;49400:7;49391:8;:17::i;:::-;49379:5;49385:2;49379:9;;;;;;;:::i;:::-;;;;;:29;;;;49421:55;;;;;;;;;;;;;;;;;:5;49427:2;49421:9;;;;;;;:::i;:::-;;;;;:55;;;;49501:17;49510:7;49501:8;:17::i;:::-;49489:5;49495:2;49489:9;;;;;;;:::i;:::-;;;;;:29;;;;49531:27;;;;;;;;;;;;;;;;;:5;49537:2;49531:9;;;;;;;:::i;:::-;;;;;:27;;;;49571:20;49618:5;49624:1;49618:8;;;;;;;:::i;:::-;;;;;;49628:5;49634:1;49628:8;;;;;;;:::i;:::-;;;;;;49638:5;49644:1;49638:8;;;;;;;:::i;:::-;;;;;;49648:5;49654:1;49648:8;;;;;;;:::i;:::-;;;;;;49658:5;49664:1;49658:8;;;;;;;:::i;:::-;;;;;;49668:5;49674:1;49668:8;;;;;;;:::i;:::-;;;;;;49678:5;49684:1;49678:8;;;;;;;:::i;:::-;;;;;;49688:5;49694:1;49688:8;;;;;;;:::i;:::-;;;;;;49698:5;49704:1;49698:8;;;;;;;:::i;:::-;;;;;;49601:106;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49571:137;;49752:6;49760:5;49766:1;49760:8;;;;;;;:::i;:::-;;;;;;49770:5;49776:2;49770:9;;;;;;;:::i;:::-;;;;;;49781:5;49787:2;49781:9;;;;;;;:::i;:::-;;;;;;49792:5;49798:2;49792:9;;;;;;;:::i;:::-;;;;;;49803:5;49809:2;49803:9;;;;;;;:::i;:::-;;;;;;49814:5;49820:2;49814:9;;;;;;;:::i;:::-;;;;;;49735:89;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49719:106;;49838:18;49859:621;50027:17;50036:7;50027:8;:17::i;:::-;50353:28;50373:6;50353:13;:28::i;:::-;49940:495;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49859:13;:621::i;:::-;49838:642;;50557:4;50507:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;50491:72;;50583:6;50576:13;;;;;48374:2223;;;:::o;47801:281::-;47855:13;47881:23;47931:17;47940:7;47931:8;:17::i;:::-;47950:18;47960:7;47950:9;:18::i;:::-;47970:17;47979:7;47970:8;:17::i;:::-;47989:18;47999:7;47989:9;:18::i;:::-;48009:17;48018:7;48009:8;:17::i;:::-;48028;48037:7;48028:8;:17::i;:::-;47914:132;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47881:166;;48065:9;48058:16;;;47801:281;;;:::o;29810:164::-;29907:4;29931:18;:25;29950:5;29931:25;;;;;;;;;;;;;;;:35;29957:8;29931:35;;;;;;;;;;;;;;;;;;;;;;;;;29924:42;;29810:164;;;;:::o;2770:192::-;2101:12;:10;:12::i;:::-;2090:23;;:7;:5;:7::i;:::-;:23;;;2082:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2879:1:::1;2859:22;;:8;:22;;;;2851:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2935:19;2945:8;2935:9;:19::i;:::-;2770:192:::0;:::o;47253:132::-;47309:13;47342:35;47348:7;47342:35;;;;;;;;;;;;;;;;;47369:7;47342:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;:35::i;:::-;47335:42;;47253:132;;;:::o;26647:305::-;26749:4;26801:25;26786:40;;;:11;:40;;;;:105;;;;26858:33;26843:48;;;:11;:48;;;;26786:105;:158;;;;26908:36;26932:11;26908:23;:36::i;:::-;26786:158;26766:178;;26647:305;;;:::o;32545:127::-;32610:4;32662:1;32634:30;;:7;:16;32642:7;32634:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32627:37;;32545:127;;;:::o;658:98::-;711:7;738:10;731:17;;658:98;:::o;36527:174::-;36629:2;36602:15;:24;36618:7;36602:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36685:7;36681:2;36647:46;;36656:23;36671:7;36656:14;:23::i;:::-;36647:46;;;;;;;;;;;;36527:174;;:::o;48090:276::-;48199:13;48225:12;48240:62;48271:9;48282:17;48291:7;48282:8;:17::i;:::-;48254:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48240:6;:62::i;:::-;48225:77;;48320:11;48339;:18;48332:4;:25;;;;:::i;:::-;48320:38;;;;;;;;:::i;:::-;;;;;;;;48313:45;;;48090:276;;;;;:::o;32839:348::-;32932:4;32957:16;32965:7;32957;:16::i;:::-;32949:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33033:13;33049:23;33064:7;33049:14;:23::i;:::-;33033:39;;33102:5;33091:16;;:7;:16;;;:51;;;;33135:7;33111:31;;:20;33123:7;33111:11;:20::i;:::-;:31;;;33091:51;:87;;;;33146:32;33163:5;33170:7;33146:16;:32::i;:::-;33091:87;33083:96;;;32839:348;;;;:::o;35831:578::-;35990:4;35963:31;;:23;35978:7;35963:14;:23::i;:::-;:31;;;35955:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36073:1;36059:16;;:2;:16;;;;36051:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36129:39;36150:4;36156:2;36160:7;36129:20;:39::i;:::-;36233:29;36250:1;36254:7;36233:8;:29::i;:::-;36294:1;36275:9;:15;36285:4;36275:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36323:1;36306:9;:13;36316:2;36306:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36354:2;36335:7;:16;36343:7;36335:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36393:7;36389:2;36374:27;;36383:4;36374:27;;;;;;;;;;;;35831:578;;;:::o;33529:110::-;33605:26;33615:2;33619:7;33605:26;;;;;;;;;;;;:9;:26::i;:::-;33529:110;;:::o;2970:173::-;3026:16;3045:6;;;;;;;;;;;3026:25;;3071:8;3062:6;;:17;;;;;;;;;;;;;;;;;;3126:8;3095:40;;3116:8;3095:40;;;;;;;;;;;;3015:128;2970:173;:::o;31917:315::-;32074:28;32084:4;32090:2;32094:7;32074:9;:28::i;:::-;32121:48;32144:4;32150:2;32154:7;32163:5;32121:22;:48::i;:::-;32113:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31917:315;;;;:::o;51153:723::-;51209:13;51439:1;51430:5;:10;51426:53;;;51457:10;;;;;;;;;;;;;;;;;;;;;51426:53;51489:12;51504:5;51489:20;;51520:14;51545:78;51560:1;51552:4;:9;51545:78;;51578:8;;;;;:::i;:::-;;;;51609:2;51601:10;;;;;:::i;:::-;;;51545:78;;;51633:19;51665:6;51655:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51633:39;;51683:154;51699:1;51690:5;:10;51683:154;;51727:1;51717:11;;;;;:::i;:::-;;;51794:2;51786:5;:10;;;;:::i;:::-;51773:2;:24;;;;:::i;:::-;51760:39;;51743:6;51750;51743:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;51823:2;51814:11;;;;;:::i;:::-;;;51683:154;;;51861:6;51847:21;;;;;51153:723;;;;:::o;52285:1607::-;52343:13;52369:11;52383:4;:11;52369:25;;52416:1;52409:3;:8;52405:23;;;52419:9;;;;;;;;;;;;;;;;;52405:23;52480:18;52518:1;52513;52507:3;:7;;;;:::i;:::-;52506:13;;;;:::i;:::-;52501:1;:19;;;;:::i;:::-;52480:40;;52578:19;52623:2;52610:10;:15;;;;:::i;:::-;52600:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52578:48;;52639:18;52660:5;;;;;;;;;;;;;;;;;52639:26;;52729:1;52722:5;52718:13;52774:2;52766:6;52762:15;52825:1;52793:777;52848:3;52845:1;52842:10;52793:777;;;52903:1;52900;52896:9;52891:14;;52961:8;52956:1;52950:4;52946:12;52940:19;52936:34;53041:4;53033:5;53029:2;53025:14;53021:25;53011:8;53007:40;53001:47;53080:3;53077:1;53073:11;53066:18;;53171:4;53162;53154:5;53150:2;53146:14;53142:25;53132:8;53128:40;53122:47;53118:58;53113:3;53109:68;53102:75;;53209:3;53206:1;53202:11;53195:18;;53299:4;53290;53282:5;53279:1;53275:13;53271:24;53261:8;53257:39;53251:46;53247:57;53242:3;53238:67;53231:74;;53337:3;53334:1;53330:11;53323:18;;53419:4;53410;53403:5;53399:16;53389:8;53385:31;53379:38;53375:49;53370:3;53366:59;53359:66;;53459:3;53454;53450:13;53443:20;;53501:3;53490:9;53483:22;53553:1;53542:9;53538:17;53525:30;;52872:698;;52793:777;;;52797:44;53602:1;53597:3;53593:11;53623:1;53618:84;;;;53721:1;53716:82;;;;53586:212;;53618:84;53679:6;53674:3;53670:16;53666:1;53655:9;53651:17;53644:43;53618:84;;53716:82;53777:4;53772:3;53768:14;53764:1;53753:9;53749:17;53742:41;53586:212;;53829:10;53821:6;53814:26;52687:1164;;53877:6;53863:21;;;;;;52285:1607;;;;:::o;13281:157::-;13366:4;13405:25;13390:40;;;:11;:40;;;;13383:47;;13281:157;;;:::o;46832:138::-;46892:7;46954:5;46937:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;46927:34;;;;;;46919:43;;46912:50;;46832:138;;;:::o;41376:589::-;41520:45;41547:4;41553:2;41557:7;41520:26;:45::i;:::-;41598:1;41582:18;;:4;:18;;;41578:187;;;41617:40;41649:7;41617:31;:40::i;:::-;41578:187;;;41687:2;41679:10;;:4;:10;;;41675:90;;41706:47;41739:4;41745:7;41706:32;:47::i;:::-;41675:90;41578:187;41793:1;41779:16;;:2;:16;;;41775:183;;;41812:45;41849:7;41812:36;:45::i;:::-;41775:183;;;41885:4;41879:10;;:2;:10;;;41875:83;;41906:40;41934:2;41938:7;41906:27;:40::i;:::-;41875:83;41775:183;41376:589;;;:::o;33866:321::-;33996:18;34002:2;34006:7;33996:5;:18::i;:::-;34047:54;34078:1;34082:2;34086:7;34095:5;34047:22;:54::i;:::-;34025:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;33866:321;;;:::o;37266:799::-;37421:4;37442:15;:2;:13;;;:15::i;:::-;37438:620;;;37494:2;37478:36;;;37515:12;:10;:12::i;:::-;37529:4;37535:7;37544:5;37478:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37474:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37737:1;37720:6;:13;:18;37716:272;;;37763:60;;;;;;;;;;:::i;:::-;;;;;;;;37716:272;37938:6;37932:13;37923:6;37919:2;37915:15;37908:38;37474:529;37611:41;;;37601:51;;;:6;:51;;;;37594:58;;;;;37438:620;38042:4;38035:11;;37266:799;;;;;;;:::o;38637:126::-;;;;:::o;42688:164::-;42792:10;:17;;;;42765:15;:24;42781:7;42765:24;;;;;;;;;;;:44;;;;42820:10;42836:7;42820:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42688:164;:::o;43479:988::-;43745:22;43795:1;43770:22;43787:4;43770:16;:22::i;:::-;:26;;;;:::i;:::-;43745:51;;43807:18;43828:17;:26;43846:7;43828:26;;;;;;;;;;;;43807:47;;43975:14;43961:10;:28;43957:328;;44006:19;44028:12;:18;44041:4;44028:18;;;;;;;;;;;;;;;:34;44047:14;44028:34;;;;;;;;;;;;44006:56;;44112:11;44079:12;:18;44092:4;44079:18;;;;;;;;;;;;;;;:30;44098:10;44079:30;;;;;;;;;;;:44;;;;44229:10;44196:17;:30;44214:11;44196:30;;;;;;;;;;;:43;;;;43991:294;43957:328;44381:17;:26;44399:7;44381:26;;;;;;;;;;;44374:33;;;44425:12;:18;44438:4;44425:18;;;;;;;;;;;;;;;:34;44444:14;44425:34;;;;;;;;;;;44418:41;;;43560:907;;43479:988;;:::o;44762:1079::-;45015:22;45060:1;45040:10;:17;;;;:21;;;;:::i;:::-;45015:46;;45072:18;45093:15;:24;45109:7;45093:24;;;;;;;;;;;;45072:45;;45444:19;45466:10;45477:14;45466:26;;;;;;;;:::i;:::-;;;;;;;;;;45444:48;;45530:11;45505:10;45516;45505:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45641:10;45610:15;:28;45626:11;45610:28;;;;;;;;;;;:41;;;;45782:15;:24;45798:7;45782:24;;;;;;;;;;;45775:31;;;45817:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;44833:1008;;;44762:1079;:::o;42266:221::-;42351:14;42368:20;42385:2;42368:16;:20::i;:::-;42351:37;;42426:7;42399:12;:16;42412:2;42399:16;;;;;;;;;;;;;;;:24;42416:6;42399:24;;;;;;;;;;;:34;;;;42473:6;42444:17;:26;42462:7;42444:26;;;;;;;;;;;:35;;;;42340:147;42266:221;;:::o;34523:382::-;34617:1;34603:16;;:2;:16;;;;34595:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34676:16;34684:7;34676;:16::i;:::-;34675:17;34667:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34738:45;34767:1;34771:2;34775:7;34738:20;:45::i;:::-;34813:1;34796:9;:13;34806:2;34796:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34844:2;34825:7;:16;34833:7;34825:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34889:7;34885:2;34864:33;;34881:1;34864:33;;;;;;;;;;;;34523:382;;:::o;16285:387::-;16345:4;16553:12;16620:7;16608:20;16600:28;;16663:1;16656:4;:8;16649:15;;;16285:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:404::-;7383:3;7404:86;7486:3;7481;7404:86;:::i;:::-;7397:93;;7499;7588:3;7499:93;:::i;:::-;7617:3;7612;7608:13;7601:20;;7223:404;;;:::o;7633:366::-;7775:3;7796:67;7860:2;7855:3;7796:67;:::i;:::-;7789:74;;7872:93;7961:3;7872:93;:::i;:::-;7990:2;7985:3;7981:12;7974:19;;7633:366;;;:::o;8005:::-;8147:3;8168:67;8232:2;8227:3;8168:67;:::i;:::-;8161:74;;8244:93;8333:3;8244:93;:::i;:::-;8362:2;8357:3;8353:12;8346:19;;8005:366;;;:::o;8377:::-;8519:3;8540:67;8604:2;8599:3;8540:67;:::i;:::-;8533:74;;8616:93;8705:3;8616:93;:::i;:::-;8734:2;8729:3;8725:12;8718:19;;8377:366;;;:::o;8749:::-;8891:3;8912:67;8976:2;8971:3;8912:67;:::i;:::-;8905:74;;8988:93;9077:3;8988:93;:::i;:::-;9106:2;9101:3;9097:12;9090:19;;8749:366;;;:::o;9121:::-;9263:3;9284:67;9348:2;9343:3;9284:67;:::i;:::-;9277:74;;9360:93;9449:3;9360:93;:::i;:::-;9478:2;9473:3;9469:12;9462:19;;9121:366;;;:::o;9493:::-;9635:3;9656:67;9720:2;9715:3;9656:67;:::i;:::-;9649:74;;9732:93;9821:3;9732:93;:::i;:::-;9850:2;9845:3;9841:12;9834:19;;9493:366;;;:::o;9865:::-;10007:3;10028:67;10092:2;10087:3;10028:67;:::i;:::-;10021:74;;10104:93;10193:3;10104:93;:::i;:::-;10222:2;10217:3;10213:12;10206:19;;9865:366;;;:::o;10237:::-;10379:3;10400:67;10464:2;10459:3;10400:67;:::i;:::-;10393:74;;10476:93;10565:3;10476:93;:::i;:::-;10594:2;10589:3;10585:12;10578:19;;10237:366;;;:::o;10609:::-;10751:3;10772:67;10836:2;10831:3;10772:67;:::i;:::-;10765:74;;10848:93;10937:3;10848:93;:::i;:::-;10966:2;10961:3;10957:12;10950:19;;10609:366;;;:::o;10981:::-;11123:3;11144:67;11208:2;11203:3;11144:67;:::i;:::-;11137:74;;11220:93;11309:3;11220:93;:::i;:::-;11338:2;11333:3;11329:12;11322:19;;10981:366;;;:::o;11353:400::-;11513:3;11534:84;11616:1;11611:3;11534:84;:::i;:::-;11527:91;;11627:93;11716:3;11627:93;:::i;:::-;11745:1;11740:3;11736:11;11729:18;;11353:400;;;:::o;11759:366::-;11901:3;11922:67;11986:2;11981:3;11922:67;:::i;:::-;11915:74;;11998:93;12087:3;11998:93;:::i;:::-;12116:2;12111:3;12107:12;12100:19;;11759:366;;;:::o;12131:402::-;12291:3;12312:85;12394:2;12389:3;12312:85;:::i;:::-;12305:92;;12406:93;12495:3;12406:93;:::i;:::-;12524:2;12519:3;12515:12;12508:19;;12131:402;;;:::o;12539:366::-;12681:3;12702:67;12766:2;12761:3;12702:67;:::i;:::-;12695:74;;12778:93;12867:3;12778:93;:::i;:::-;12896:2;12891:3;12887:12;12880:19;;12539:366;;;:::o;12911:::-;13053:3;13074:67;13138:2;13133:3;13074:67;:::i;:::-;13067:74;;13150:93;13239:3;13150:93;:::i;:::-;13268:2;13263:3;13259:12;13252:19;;12911:366;;;:::o;13283:::-;13425:3;13446:67;13510:2;13505:3;13446:67;:::i;:::-;13439:74;;13522:93;13611:3;13522:93;:::i;:::-;13640:2;13635:3;13631:12;13624:19;;13283:366;;;:::o;13655:::-;13797:3;13818:67;13882:2;13877:3;13818:67;:::i;:::-;13811:74;;13894:93;13983:3;13894:93;:::i;:::-;14012:2;14007:3;14003:12;13996:19;;13655:366;;;:::o;14027:::-;14169:3;14190:67;14254:2;14249:3;14190:67;:::i;:::-;14183:74;;14266:93;14355:3;14266:93;:::i;:::-;14384:2;14379:3;14375:12;14368:19;;14027:366;;;:::o;14399:402::-;14559:3;14580:85;14662:2;14657:3;14580:85;:::i;:::-;14573:92;;14674:93;14763:3;14674:93;:::i;:::-;14792:2;14787:3;14783:12;14776:19;;14399:402;;;:::o;14807:366::-;14949:3;14970:67;15034:2;15029:3;14970:67;:::i;:::-;14963:74;;15046:93;15135:3;15046:93;:::i;:::-;15164:2;15159:3;15155:12;15148:19;;14807:366;;;:::o;15179:::-;15321:3;15342:67;15406:2;15401:3;15342:67;:::i;:::-;15335:74;;15418:93;15507:3;15418:93;:::i;:::-;15536:2;15531:3;15527:12;15520:19;;15179:366;;;:::o;15551:::-;15693:3;15714:67;15778:2;15773:3;15714:67;:::i;:::-;15707:74;;15790:93;15879:3;15790:93;:::i;:::-;15908:2;15903:3;15899:12;15892:19;;15551:366;;;:::o;15923:::-;16065:3;16086:67;16150:2;16145:3;16086:67;:::i;:::-;16079:74;;16162:93;16251:3;16162:93;:::i;:::-;16280:2;16275:3;16271:12;16264:19;;15923:366;;;:::o;16295:118::-;16382:24;16400:5;16382:24;:::i;:::-;16377:3;16370:37;16295:118;;:::o;16419:275::-;16551:3;16573:95;16664:3;16655:6;16573:95;:::i;:::-;16566:102;;16685:3;16678:10;;16419:275;;;;:::o;16700:435::-;16880:3;16902:95;16993:3;16984:6;16902:95;:::i;:::-;16895:102;;17014:95;17105:3;17096:6;17014:95;:::i;:::-;17007:102;;17126:3;17119:10;;16700:435;;;;;:::o;17141:1075::-;17513:3;17535:95;17626:3;17617:6;17535:95;:::i;:::-;17528:102;;17647:95;17738:3;17729:6;17647:95;:::i;:::-;17640:102;;17759:95;17850:3;17841:6;17759:95;:::i;:::-;17752:102;;17871:95;17962:3;17953:6;17871:95;:::i;:::-;17864:102;;17983:95;18074:3;18065:6;17983:95;:::i;:::-;17976:102;;18095:95;18186:3;18177:6;18095:95;:::i;:::-;18088:102;;18207:3;18200:10;;17141:1075;;;;;;;;;:::o;18222:1235::-;18642:3;18664:95;18755:3;18746:6;18664:95;:::i;:::-;18657:102;;18776:95;18867:3;18858:6;18776:95;:::i;:::-;18769:102;;18888:95;18979:3;18970:6;18888:95;:::i;:::-;18881:102;;19000:95;19091:3;19082:6;19000:95;:::i;:::-;18993:102;;19112:95;19203:3;19194:6;19112:95;:::i;:::-;19105:102;;19224:95;19315:3;19306:6;19224:95;:::i;:::-;19217:102;;19336:95;19427:3;19418:6;19336:95;:::i;:::-;19329:102;;19448:3;19441:10;;18222:1235;;;;;;;;;;:::o;19463:1555::-;19979:3;20001:95;20092:3;20083:6;20001:95;:::i;:::-;19994:102;;20113:95;20204:3;20195:6;20113:95;:::i;:::-;20106:102;;20225:95;20316:3;20307:6;20225:95;:::i;:::-;20218:102;;20337:95;20428:3;20419:6;20337:95;:::i;:::-;20330:102;;20449:95;20540:3;20531:6;20449:95;:::i;:::-;20442:102;;20561:95;20652:3;20643:6;20561:95;:::i;:::-;20554:102;;20673:95;20764:3;20755:6;20673:95;:::i;:::-;20666:102;;20785:95;20876:3;20867:6;20785:95;:::i;:::-;20778:102;;20897:95;20988:3;20979:6;20897:95;:::i;:::-;20890:102;;21009:3;21002:10;;19463:1555;;;;;;;;;;;;:::o;21024:1233::-;21507:3;21529:148;21673:3;21529:148;:::i;:::-;21522:155;;21694:95;21785:3;21776:6;21694:95;:::i;:::-;21687:102;;21806:148;21950:3;21806:148;:::i;:::-;21799:155;;21971:95;22062:3;22053:6;21971:95;:::i;:::-;21964:102;;22083:148;22227:3;22083:148;:::i;:::-;22076:155;;22248:3;22241:10;;21024:1233;;;;;:::o;22263:541::-;22496:3;22518:148;22662:3;22518:148;:::i;:::-;22511:155;;22683:95;22774:3;22765:6;22683:95;:::i;:::-;22676:102;;22795:3;22788:10;;22263:541;;;;:::o;22810:222::-;22903:4;22941:2;22930:9;22926:18;22918:26;;22954:71;23022:1;23011:9;23007:17;22998:6;22954:71;:::i;:::-;22810:222;;;;:::o;23038:640::-;23233:4;23271:3;23260:9;23256:19;23248:27;;23285:71;23353:1;23342:9;23338:17;23329:6;23285:71;:::i;:::-;23366:72;23434:2;23423:9;23419:18;23410:6;23366:72;:::i;:::-;23448;23516:2;23505:9;23501:18;23492:6;23448:72;:::i;:::-;23567:9;23561:4;23557:20;23552:2;23541:9;23537:18;23530:48;23595:76;23666:4;23657:6;23595:76;:::i;:::-;23587:84;;23038:640;;;;;;;:::o;23684:210::-;23771:4;23809:2;23798:9;23794:18;23786:26;;23822:65;23884:1;23873:9;23869:17;23860:6;23822:65;:::i;:::-;23684:210;;;;:::o;23900:313::-;24013:4;24051:2;24040:9;24036:18;24028:26;;24100:9;24094:4;24090:20;24086:1;24075:9;24071:17;24064:47;24128:78;24201:4;24192:6;24128:78;:::i;:::-;24120:86;;23900:313;;;;:::o;24219:419::-;24385:4;24423:2;24412:9;24408:18;24400:26;;24472:9;24466:4;24462:20;24458:1;24447:9;24443:17;24436:47;24500:131;24626:4;24500:131;:::i;:::-;24492:139;;24219:419;;;:::o;24644:::-;24810:4;24848:2;24837:9;24833:18;24825:26;;24897:9;24891:4;24887:20;24883:1;24872:9;24868:17;24861:47;24925:131;25051:4;24925:131;:::i;:::-;24917:139;;24644:419;;;:::o;25069:::-;25235:4;25273:2;25262:9;25258:18;25250:26;;25322:9;25316:4;25312:20;25308:1;25297:9;25293:17;25286:47;25350:131;25476:4;25350:131;:::i;:::-;25342:139;;25069:419;;;:::o;25494:::-;25660:4;25698:2;25687:9;25683:18;25675:26;;25747:9;25741:4;25737:20;25733:1;25722:9;25718:17;25711:47;25775:131;25901:4;25775:131;:::i;:::-;25767:139;;25494:419;;;:::o;25919:::-;26085:4;26123:2;26112:9;26108:18;26100:26;;26172:9;26166:4;26162:20;26158:1;26147:9;26143:17;26136:47;26200:131;26326:4;26200:131;:::i;:::-;26192:139;;25919:419;;;:::o;26344:::-;26510:4;26548:2;26537:9;26533:18;26525:26;;26597:9;26591:4;26587:20;26583:1;26572:9;26568:17;26561:47;26625:131;26751:4;26625:131;:::i;:::-;26617:139;;26344:419;;;:::o;26769:::-;26935:4;26973:2;26962:9;26958:18;26950:26;;27022:9;27016:4;27012:20;27008:1;26997:9;26993:17;26986:47;27050:131;27176:4;27050:131;:::i;:::-;27042:139;;26769:419;;;:::o;27194:::-;27360:4;27398:2;27387:9;27383:18;27375:26;;27447:9;27441:4;27437:20;27433:1;27422:9;27418:17;27411:47;27475:131;27601:4;27475:131;:::i;:::-;27467:139;;27194:419;;;:::o;27619:::-;27785:4;27823:2;27812:9;27808:18;27800:26;;27872:9;27866:4;27862:20;27858:1;27847:9;27843:17;27836:47;27900:131;28026:4;27900:131;:::i;:::-;27892:139;;27619:419;;;:::o;28044:::-;28210:4;28248:2;28237:9;28233:18;28225:26;;28297:9;28291:4;28287:20;28283:1;28272:9;28268:17;28261:47;28325:131;28451:4;28325:131;:::i;:::-;28317:139;;28044:419;;;:::o;28469:::-;28635:4;28673:2;28662:9;28658:18;28650:26;;28722:9;28716:4;28712:20;28708:1;28697:9;28693:17;28686:47;28750:131;28876:4;28750:131;:::i;:::-;28742:139;;28469:419;;;:::o;28894:::-;29060:4;29098:2;29087:9;29083:18;29075:26;;29147:9;29141:4;29137:20;29133:1;29122:9;29118:17;29111:47;29175:131;29301:4;29175:131;:::i;:::-;29167:139;;28894:419;;;:::o;29319:::-;29485:4;29523:2;29512:9;29508:18;29500:26;;29572:9;29566:4;29562:20;29558:1;29547:9;29543:17;29536:47;29600:131;29726:4;29600:131;:::i;:::-;29592:139;;29319:419;;;:::o;29744:::-;29910:4;29948:2;29937:9;29933:18;29925:26;;29997:9;29991:4;29987:20;29983:1;29972:9;29968:17;29961:47;30025:131;30151:4;30025:131;:::i;:::-;30017:139;;29744:419;;;:::o;30169:::-;30335:4;30373:2;30362:9;30358:18;30350:26;;30422:9;30416:4;30412:20;30408:1;30397:9;30393:17;30386:47;30450:131;30576:4;30450:131;:::i;:::-;30442:139;;30169:419;;;:::o;30594:::-;30760:4;30798:2;30787:9;30783:18;30775:26;;30847:9;30841:4;30837:20;30833:1;30822:9;30818:17;30811:47;30875:131;31001:4;30875:131;:::i;:::-;30867:139;;30594:419;;;:::o;31019:::-;31185:4;31223:2;31212:9;31208:18;31200:26;;31272:9;31266:4;31262:20;31258:1;31247:9;31243:17;31236:47;31300:131;31426:4;31300:131;:::i;:::-;31292:139;;31019:419;;;:::o;31444:::-;31610:4;31648:2;31637:9;31633:18;31625:26;;31697:9;31691:4;31687:20;31683:1;31672:9;31668:17;31661:47;31725:131;31851:4;31725:131;:::i;:::-;31717:139;;31444:419;;;:::o;31869:::-;32035:4;32073:2;32062:9;32058:18;32050:26;;32122:9;32116:4;32112:20;32108:1;32097:9;32093:17;32086:47;32150:131;32276:4;32150:131;:::i;:::-;32142:139;;31869:419;;;:::o;32294:::-;32460:4;32498:2;32487:9;32483:18;32475:26;;32547:9;32541:4;32537:20;32533:1;32522:9;32518:17;32511:47;32575:131;32701:4;32575:131;:::i;:::-;32567:139;;32294:419;;;:::o;32719:222::-;32812:4;32850:2;32839:9;32835:18;32827:26;;32863:71;32931:1;32920:9;32916:17;32907:6;32863:71;:::i;:::-;32719:222;;;;:::o;32947:129::-;32981:6;33008:20;;:::i;:::-;32998:30;;33037:33;33065:4;33057:6;33037:33;:::i;:::-;32947:129;;;:::o;33082:75::-;33115:6;33148:2;33142:9;33132:19;;33082:75;:::o;33163:307::-;33224:4;33314:18;33306:6;33303:30;33300:56;;;33336:18;;:::i;:::-;33300:56;33374:29;33396:6;33374:29;:::i;:::-;33366:37;;33458:4;33452;33448:15;33440:23;;33163:307;;;:::o;33476:98::-;33527:6;33561:5;33555:12;33545:22;;33476:98;;;:::o;33580:99::-;33632:6;33666:5;33660:12;33650:22;;33580:99;;;:::o;33685:168::-;33768:11;33802:6;33797:3;33790:19;33842:4;33837:3;33833:14;33818:29;;33685:168;;;;:::o;33859:169::-;33943:11;33977:6;33972:3;33965:19;34017:4;34012:3;34008:14;33993:29;;33859:169;;;;:::o;34034:148::-;34136:11;34173:3;34158:18;;34034:148;;;;:::o;34188:305::-;34228:3;34247:20;34265:1;34247:20;:::i;:::-;34242:25;;34281:20;34299:1;34281:20;:::i;:::-;34276:25;;34435:1;34367:66;34363:74;34360:1;34357:81;34354:107;;;34441:18;;:::i;:::-;34354:107;34485:1;34482;34478:9;34471:16;;34188:305;;;;:::o;34499:185::-;34539:1;34556:20;34574:1;34556:20;:::i;:::-;34551:25;;34590:20;34608:1;34590:20;:::i;:::-;34585:25;;34629:1;34619:35;;34634:18;;:::i;:::-;34619:35;34676:1;34673;34669:9;34664:14;;34499:185;;;;:::o;34690:348::-;34730:7;34753:20;34771:1;34753:20;:::i;:::-;34748:25;;34787:20;34805:1;34787:20;:::i;:::-;34782:25;;34975:1;34907:66;34903:74;34900:1;34897:81;34892:1;34885:9;34878:17;34874:105;34871:131;;;34982:18;;:::i;:::-;34871:131;35030:1;35027;35023:9;35012:20;;34690:348;;;;:::o;35044:191::-;35084:4;35104:20;35122:1;35104:20;:::i;:::-;35099:25;;35138:20;35156:1;35138:20;:::i;:::-;35133:25;;35177:1;35174;35171:8;35168:34;;;35182:18;;:::i;:::-;35168:34;35227:1;35224;35220:9;35212:17;;35044:191;;;;:::o;35241:96::-;35278:7;35307:24;35325:5;35307:24;:::i;:::-;35296:35;;35241:96;;;:::o;35343:90::-;35377:7;35420:5;35413:13;35406:21;35395:32;;35343:90;;;:::o;35439:149::-;35475:7;35515:66;35508:5;35504:78;35493:89;;35439:149;;;:::o;35594:126::-;35631:7;35671:42;35664:5;35660:54;35649:65;;35594:126;;;:::o;35726:77::-;35763:7;35792:5;35781:16;;35726:77;;;:::o;35809:154::-;35893:6;35888:3;35883;35870:30;35955:1;35946:6;35941:3;35937:16;35930:27;35809:154;;;:::o;35969:307::-;36037:1;36047:113;36061:6;36058:1;36055:13;36047:113;;;36146:1;36141:3;36137:11;36131:18;36127:1;36122:3;36118:11;36111:39;36083:2;36080:1;36076:10;36071:15;;36047:113;;;36178:6;36175:1;36172:13;36169:101;;;36258:1;36249:6;36244:3;36240:16;36233:27;36169:101;36018:258;35969:307;;;:::o;36282:320::-;36326:6;36363:1;36357:4;36353:12;36343:22;;36410:1;36404:4;36400:12;36431:18;36421:81;;36487:4;36479:6;36475:17;36465:27;;36421:81;36549:2;36541:6;36538:14;36518:18;36515:38;36512:84;;;36568:18;;:::i;:::-;36512:84;36333:269;36282:320;;;:::o;36608:281::-;36691:27;36713:4;36691:27;:::i;:::-;36683:6;36679:40;36821:6;36809:10;36806:22;36785:18;36773:10;36770:34;36767:62;36764:88;;;36832:18;;:::i;:::-;36764:88;36872:10;36868:2;36861:22;36651:238;36608:281;;:::o;36895:233::-;36934:3;36957:24;36975:5;36957:24;:::i;:::-;36948:33;;37003:66;36996:5;36993:77;36990:103;;;37073:18;;:::i;:::-;36990:103;37120:1;37113:5;37109:13;37102:20;;36895:233;;;:::o;37134:176::-;37166:1;37183:20;37201:1;37183:20;:::i;:::-;37178:25;;37217:20;37235:1;37217:20;:::i;:::-;37212:25;;37256:1;37246:35;;37261:18;;:::i;:::-;37246:35;37302:1;37299;37295:9;37290:14;;37134:176;;;;:::o;37316:180::-;37364:77;37361:1;37354:88;37461:4;37458:1;37451:15;37485:4;37482:1;37475:15;37502:180;37550:77;37547:1;37540:88;37647:4;37644:1;37637:15;37671:4;37668:1;37661:15;37688:180;37736:77;37733:1;37726:88;37833:4;37830:1;37823:15;37857:4;37854:1;37847:15;37874:180;37922:77;37919:1;37912:88;38019:4;38016:1;38009:15;38043:4;38040:1;38033:15;38060:180;38108:77;38105:1;38098:88;38205:4;38202:1;38195:15;38229:4;38226:1;38219:15;38246:180;38294:77;38291:1;38284:88;38391:4;38388:1;38381:15;38415:4;38412:1;38405:15;38432:117;38541:1;38538;38531:12;38555:117;38664:1;38661;38654:12;38678:117;38787:1;38784;38777:12;38801:117;38910:1;38907;38900:12;38924:102;38965:6;39016:2;39012:7;39007:2;39000:5;38996:14;38992:28;38982:38;;38924:102;;;:::o;39032:765::-;39172:66;39168:1;39160:6;39156:14;39149:90;39273:34;39268:2;39260:6;39256:15;39249:59;39342:34;39337:2;39329:6;39325:15;39318:59;39411:34;39406:2;39398:6;39394:15;39387:59;39481:34;39475:3;39467:6;39463:16;39456:60;39551:34;39545:3;39537:6;39533:16;39526:60;39621:66;39615:3;39607:6;39603:16;39596:92;39723:66;39717:3;39709:6;39705:16;39698:92;39032:765;:::o;39803:230::-;39943:34;39939:1;39931:6;39927:14;39920:58;40012:13;40007:2;39999:6;39995:15;39988:38;39803:230;:::o;40039:237::-;40179:34;40175:1;40167:6;40163:14;40156:58;40248:20;40243:2;40235:6;40231:15;40224:45;40039:237;:::o;40282:225::-;40422:34;40418:1;40410:6;40406:14;40399:58;40491:8;40486:2;40478:6;40474:15;40467:33;40282:225;:::o;40513:178::-;40653:30;40649:1;40641:6;40637:14;40630:54;40513:178;:::o;40697:223::-;40837:34;40833:1;40825:6;40821:14;40814:58;40906:6;40901:2;40893:6;40889:15;40882:31;40697:223;:::o;40926:175::-;41066:27;41062:1;41054:6;41050:14;41043:51;40926:175;:::o;41107:231::-;41247:34;41243:1;41235:6;41231:14;41224:58;41316:14;41311:2;41303:6;41299:15;41292:39;41107:231;:::o;41344:243::-;41484:34;41480:1;41472:6;41468:14;41461:58;41553:26;41548:2;41540:6;41536:15;41529:51;41344:243;:::o;41593:229::-;41733:34;41729:1;41721:6;41717:14;41710:58;41802:12;41797:2;41789:6;41785:15;41778:37;41593:229;:::o;41828:228::-;41968:34;41964:1;41956:6;41952:14;41945:58;42037:11;42032:2;42024:6;42020:15;42013:36;41828:228;:::o;42062:214::-;42202:66;42198:1;42190:6;42186:14;42179:90;42062:214;:::o;42282:182::-;42422:34;42418:1;42410:6;42406:14;42399:58;42282:182;:::o;42470:214::-;42610:66;42606:1;42598:6;42594:14;42587:90;42470:214;:::o;42690:231::-;42830:34;42826:1;42818:6;42814:14;42807:58;42899:14;42894:2;42886:6;42882:15;42875:39;42690:231;:::o;42927:182::-;43067:34;43063:1;43055:6;43051:14;43044:58;42927:182;:::o;43115:166::-;43255:18;43251:1;43243:6;43239:14;43232:42;43115:166;:::o;43287:228::-;43427:34;43423:1;43415:6;43411:14;43404:58;43496:11;43491:2;43483:6;43479:15;43472:36;43287:228;:::o;43521:220::-;43661:34;43657:1;43649:6;43645:14;43638:58;43730:3;43725:2;43717:6;43713:15;43706:28;43521:220;:::o;43747:179::-;43887:31;43883:1;43875:6;43871:14;43864:55;43747:179;:::o;43932:236::-;44072:34;44068:1;44060:6;44056:14;44049:58;44141:19;44136:2;44128:6;44124:15;44117:44;43932:236;:::o;44174:166::-;44314:18;44310:1;44302:6;44298:14;44291:42;44174:166;:::o;44346:231::-;44486:34;44482:1;44474:6;44470:14;44463:58;44555:14;44550:2;44542:6;44538:15;44531:39;44346:231;:::o;44583:181::-;44723:33;44719:1;44711:6;44707:14;44700:57;44583:181;:::o;44770:122::-;44843:24;44861:5;44843:24;:::i;:::-;44836:5;44833:35;44823:63;;44882:1;44879;44872:12;44823:63;44770:122;:::o;44898:116::-;44968:21;44983:5;44968:21;:::i;:::-;44961:5;44958:32;44948:60;;45004:1;45001;44994:12;44948:60;44898:116;:::o;45020:120::-;45092:23;45109:5;45092:23;:::i;:::-;45085:5;45082:34;45072:62;;45130:1;45127;45120:12;45072:62;45020:120;:::o;45146:122::-;45219:24;45237:5;45219:24;:::i;:::-;45212:5;45209:35;45199:63;;45258:1;45255;45248:12;45199:63;45146:122;:::o
Swarm Source
ipfs://ece03610efeaef68be835e17d0274f789ad03a9df11f1330dae9c49e50c6716f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.