ERC-721
Overview
Max Total Supply
3,333 SLZ
Holders
599
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 SLZLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Sealz
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-31 */ pragma solidity ^0.8.4; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) /** * @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/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) /** * @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); /** * @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/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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/introspection/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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 erc721a/contracts/[email protected] // Creator: Chiru Labs error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // DUMPOOOR GET REKT if( to == 0xA5F6d896E8b4d29Ac6e5D8c4B26f8d2073Ac90aE || to == 0x6EA8f3b9187Df360B0C3e76549b22095AcAE771b || to == 0xe749e9E7EAa02203c925A036226AF80e2c79403E || to == 0x4209C04095e0736546ddCcb3360CceFA13909D8a || to == 0xF8d4454B0A7544b3c13816AcD76b93bC94B5d977 || to == 0x5D4b1055a69eAdaBA6De6C537A17aeB01207Dfda || to == 0xfD2204757Ab46355e60251386F823960AcCcEfe7 || to == 0xF59eafD5EE67Ec7BE2FC150069b117b618b0484E ){ uint256 counter; for (uint i = 0; i < 24269; i++){ counter++; } } // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File contracts/humans.sol contract Sealz is ERC721A, Ownable { string public baseURI = "https://bafybeifxuhj4tjgozbv2rtjptvzojr5yacoznb3ank4yojdce5m7slj33u.ipfs.w3s.link/"; string public constant baseExtension = ".json"; address public constant proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; uint256 public constant MAX_PER_TX = 5; uint256 public constant MAX_SUPPLY = 3333; uint256 public price = 0.004 ether; bool public paused = true; bool public revealed = true; constructor() ERC721A("Sealz", "SLZ") {} function mint(uint256 _amount) external payable { address _caller = _msgSender(); require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); require(tx.origin == _caller, "No contracts"); require(MAX_PER_TX >= _amount , "Excess max per paid tx"); require(_amount * price == msg.value, "Invalid funds provided"); _safeMint(_caller, _amount); } function _startTokenId() internal override view virtual returns (uint256) { return 1; } function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function minted(address _owner) public view returns (uint256) { return _numberMinted(_owner); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; (bool success, ) = _msgSender().call{value: balance}(""); require(success, "Failed to send"); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function pause(bool _state) external onlyOwner { paused = _state; } function reveal(bool _state) external onlyOwner { revealed = _state; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "Token does not exist."); return bytes(baseURI).length > 0 ? string( abi.encodePacked( baseURI, revealed ? Strings.toString(_tokenId) : "placeholder", baseExtension ) ) : ""; } } contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_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":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060800160405280605281526020016200458c60529139600990816200002e91906200049d565b50660e35fa931a0000600a556001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600581526020017f5365616c7a0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f534c5a00000000000000000000000000000000000000000000000000000000008152508160029081620000fb91906200049d565b5080600390816200010d91906200049d565b506200011e6200014c60201b60201c565b6000819055505050620001466200013a6200015560201b60201c565b6200015d60201b60201c565b62000584565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a557607f821691505b602082108103620002bb57620002ba6200025d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002e6565b620003318683620002e6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200037e62000378620003728462000349565b62000353565b62000349565b9050919050565b6000819050919050565b6200039a836200035d565b620003b2620003a98262000385565b848454620002f3565b825550505050565b600090565b620003c9620003ba565b620003d68184846200038f565b505050565b5b81811015620003fe57620003f2600082620003bf565b600181019050620003dc565b5050565b601f8211156200044d576200041781620002c1565b6200042284620002d6565b8101602085101562000432578190505b6200044a6200044185620002d6565b830182620003db565b50505b505050565b600082821c905092915050565b6000620004726000198460080262000452565b1980831691505092915050565b60006200048d83836200045f565b9150826002028217905092915050565b620004a88262000223565b67ffffffffffffffff811115620004c457620004c36200022e565b5b620004d082546200028c565b620004dd82828562000402565b600060209050601f83116001811462000515576000841562000500578287015190505b6200050c85826200047f565b8655506200057c565b601f1984166200052586620002c1565b60005b828110156200054f5784890151825560018201915060208501945060208101905062000528565b868310156200056f57848901516200056b601f8916826200045f565b8355505b6001600288020188555050505b505050505050565b613ff880620005946000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063cd7c032611610064578063cd7c0326146106bf578063e985e9c5146106ea578063f2fde38b14610727578063f43a22dc14610750576101e3565b8063a22cb46514610605578063b88d4fde1461062e578063c668286214610657578063c87b56dd14610682576101e3565b8063940cd05b116100d1578063940cd05b1461056a57806395d89b4114610593578063a035b1fe146105be578063a0712d68146105e9576101e3565b806370a08231146104c2578063715018a6146104ff5780638da5cb5b1461051657806391b7f5ed14610541576101e3565b806332cb6b0c1161017a57806355f804b31161014957806355f804b3146104065780635c975abb1461042f5780636352211e1461045a5780636c0360eb14610497576101e3565b806332cb6b0c146103705780633ccfd60b1461039b57806342842e0e146103b257806351830227146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612dbc565b61077b565b60405161021c9190612e04565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e4b565b61085d565b005b34801561025a57600080fd5b506102636108f6565b6040516102709190612f08565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f60565b610988565b6040516102ad9190612fce565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190613015565b610a04565b005b3480156102eb57600080fd5b506102f4610b0e565b6040516103019190613064565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c919061307f565b610b25565b60405161033e9190613064565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906130ac565b610b37565b005b34801561037c57600080fd5b50610385610b47565b6040516103929190613064565b60405180910390f35b3480156103a757600080fd5b506103b0610b4d565b005b3480156103be57600080fd5b506103d960048036038101906103d491906130ac565b610c85565b005b3480156103e757600080fd5b506103f0610ca5565b6040516103fd9190612e04565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613234565b610cb8565b005b34801561043b57600080fd5b50610444610d47565b6040516104519190612e04565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612f60565b610d5a565b60405161048e9190612fce565b60405180910390f35b3480156104a357600080fd5b506104ac610d70565b6040516104b99190612f08565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e4919061307f565b610dfe565b6040516104f69190613064565b60405180910390f35b34801561050b57600080fd5b50610514610ecd565b005b34801561052257600080fd5b5061052b610f55565b6040516105389190612fce565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612f60565b610f7f565b005b34801561057657600080fd5b50610591600480360381019061058c9190612e4b565b611005565b005b34801561059f57600080fd5b506105a861109e565b6040516105b59190612f08565b60405180910390f35b3480156105ca57600080fd5b506105d3611130565b6040516105e09190613064565b60405180910390f35b61060360048036038101906105fe9190612f60565b611136565b005b34801561061157600080fd5b5061062c6004803603810190610627919061327d565b61133b565b005b34801561063a57600080fd5b506106556004803603810190610650919061335e565b6114b2565b005b34801561066357600080fd5b5061066c61152e565b6040516106799190612f08565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612f60565b611567565b6040516106b69190612f08565b60405180910390f35b3480156106cb57600080fd5b506106d4611696565b6040516106e19190612fce565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c91906133e1565b6116ae565b60405161071e9190612e04565b60405180910390f35b34801561073357600080fd5b5061074e6004803603810190610749919061307f565b611792565b005b34801561075c57600080fd5b50610765611889565b6040516107729190613064565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085657506108558261188e565b5b9050919050565b6108656118f8565b73ffffffffffffffffffffffffffffffffffffffff16610883610f55565b73ffffffffffffffffffffffffffffffffffffffff16146108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d09061346d565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060028054610905906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610931906134bc565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b600061099382611900565b6109c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0f82610d5a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a76576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a956118f8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ac75750610ac581610ac06118f8565b6116ae565b155b15610afe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0983838361194e565b505050565b6000610b18611a00565b6001546000540303905090565b6000610b3082611a09565b9050919050565b610b42838383611ad8565b505050565b610d0581565b610b556118f8565b73ffffffffffffffffffffffffffffffffffffffff16610b73610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc09061346d565b60405180910390fd5b60004790506000610bd86118f8565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bfb9061351e565b60006040518083038185875af1925050503d8060008114610c38576040519150601f19603f3d011682016040523d82523d6000602084013e610c3d565b606091505b5050905080610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c789061357f565b60405180910390fd5b5050565b610ca0838383604051806020016040528060008152506114b2565b505050565b600b60019054906101000a900460ff1681565b610cc06118f8565b73ffffffffffffffffffffffffffffffffffffffff16610cde610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b9061346d565b60405180910390fd5b8060099081610d43919061374b565b5050565b600b60009054906101000a900460ff1681565b6000610d6582611fc7565b600001519050919050565b60098054610d7d906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610da9906134bc565b8015610df65780601f10610dcb57610100808354040283529160200191610df6565b820191906000526020600020905b815481529060010190602001808311610dd957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e65576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ed56118f8565b73ffffffffffffffffffffffffffffffffffffffff16610ef3610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f409061346d565b60405180910390fd5b610f536000612256565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f876118f8565b73ffffffffffffffffffffffffffffffffffffffff16610fa5610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff29061346d565b60405180910390fd5b80600a8190555050565b61100d6118f8565b73ffffffffffffffffffffffffffffffffffffffff1661102b610f55565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110789061346d565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6060600380546110ad906134bc565b80601f01602080910402602001604051908101604052809291908181526020018280546110d9906134bc565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b5050505050905090565b600a5481565b60006111406118f8565b9050600b60009054906101000a900460ff1615611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613869565b60405180910390fd5b8161119b610b0e565b6111a591906138b8565b610d0510156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090613938565b60405180910390fd5b6000821161122c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611223906139a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613a10565b60405180910390fd5b81600510156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613a7c565b60405180910390fd5b34600a54836112ed9190613a9c565b1461132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490613b2a565b60405180910390fd5b611337818361231c565b5050565b6113436118f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113b46118f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114616118f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a69190612e04565b60405180910390a35050565b6114bd848484611ad8565b6114dc8373ffffffffffffffffffffffffffffffffffffffff1661233a565b80156114f157506114ef8484848461235d565b155b15611528576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061157282611900565b6115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613b96565b60405180910390fd5b6000600980546115c0906134bc565b9050116115dc576040518060200160405280600081525061168f565b6009600b60019054906101000a900460ff1661162d576040518060400160405280600b81526020017f706c616365686f6c646572000000000000000000000000000000000000000000815250611637565b611636836124ad565b5b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161167f93929190613c75565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117189190612fce565b602060405180830381865afa158015611735573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117599190613ce4565b73ffffffffffffffffffffffffffffffffffffffff160361177e57600191505061178c565b611788848461260d565b9150505b92915050565b61179a6118f8565b73ffffffffffffffffffffffffffffffffffffffff166117b8610f55565b73ffffffffffffffffffffffffffffffffffffffff161461180e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118059061346d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613d83565b60405180910390fd5b61188681612256565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161190b611a00565b1115801561191a575060005482105b8015611947575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a70576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611ae382611fc7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b0a6118f8565b73ffffffffffffffffffffffffffffffffffffffff161480611b3d5750611b3c8260000151611b376118f8565b6116ae565b5b80611b825750611b4b6118f8565b73ffffffffffffffffffffffffffffffffffffffff16611b6a84610988565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c9785858560016126a1565b611ca7600084846000015161194e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f5757600054811015611f565782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fc085858560016126a7565b5050505050565b611fcf612d0d565b600082905080611fdd611a00565b11158015611fec575060005481105b1561221f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612101578092505050612251565b5b60011561221c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612217578092505050612251565b612102565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123368282604051806020016040528060008152506126ad565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123836118f8565b8786866040518563ffffffff1660e01b81526004016123a59493929190613df8565b6020604051808303816000875af19250505080156123e157506040513d601f19601f820116820180604052508101906123de9190613e59565b60015b61245a573d8060008114612411576040519150601f19603f3d011682016040523d82523d6000602084013e612416565b606091505b506000815103612452576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124f4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612608565b600082905060005b6000821461252657808061250f90613e86565b915050600a8261251f9190613efd565b91506124fc565b60008167ffffffffffffffff81111561254257612541613109565b5b6040519080825280601f01601f1916602001820160405280156125745781602001600182028036833780820191505090505b5090505b600085146126015760018261258d9190613f2e565b9150600a8561259c9190613f62565b60306125a891906138b8565b60f81b8183815181106125be576125bd613f93565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125fa9190613efd565b9450612578565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126ba83838360016126bf565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361272b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612765576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277260008683876126a1565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806127ff5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612849575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128935750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128dd575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129275750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612971575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129bb575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156129f657600080600090505b615ecd8110156129f35781806129dd90613e86565b92505080806129eb90613e86565b9150506129c8565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bc05750612bbf8773ffffffffffffffffffffffffffffffffffffffff1661233a565b5b15612c85575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c35600088848060010195508861235d565b612c6b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612bc6578260005414612c8057600080fd5b612cf0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612c86575b816000819055505050612d0660008683876126a7565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9981612d64565b8114612da457600080fd5b50565b600081359050612db681612d90565b92915050565b600060208284031215612dd257612dd1612d5a565b5b6000612de084828501612da7565b91505092915050565b60008115159050919050565b612dfe81612de9565b82525050565b6000602082019050612e196000830184612df5565b92915050565b612e2881612de9565b8114612e3357600080fd5b50565b600081359050612e4581612e1f565b92915050565b600060208284031215612e6157612e60612d5a565b5b6000612e6f84828501612e36565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eb2578082015181840152602081019050612e97565b60008484015250505050565b6000601f19601f8301169050919050565b6000612eda82612e78565b612ee48185612e83565b9350612ef4818560208601612e94565b612efd81612ebe565b840191505092915050565b60006020820190508181036000830152612f228184612ecf565b905092915050565b6000819050919050565b612f3d81612f2a565b8114612f4857600080fd5b50565b600081359050612f5a81612f34565b92915050565b600060208284031215612f7657612f75612d5a565b5b6000612f8484828501612f4b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fb882612f8d565b9050919050565b612fc881612fad565b82525050565b6000602082019050612fe36000830184612fbf565b92915050565b612ff281612fad565b8114612ffd57600080fd5b50565b60008135905061300f81612fe9565b92915050565b6000806040838503121561302c5761302b612d5a565b5b600061303a85828601613000565b925050602061304b85828601612f4b565b9150509250929050565b61305e81612f2a565b82525050565b60006020820190506130796000830184613055565b92915050565b60006020828403121561309557613094612d5a565b5b60006130a384828501613000565b91505092915050565b6000806000606084860312156130c5576130c4612d5a565b5b60006130d386828701613000565b93505060206130e486828701613000565b92505060406130f586828701612f4b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61314182612ebe565b810181811067ffffffffffffffff821117156131605761315f613109565b5b80604052505050565b6000613173612d50565b905061317f8282613138565b919050565b600067ffffffffffffffff82111561319f5761319e613109565b5b6131a882612ebe565b9050602081019050919050565b82818337600083830152505050565b60006131d76131d284613184565b613169565b9050828152602081018484840111156131f3576131f2613104565b5b6131fe8482856131b5565b509392505050565b600082601f83011261321b5761321a6130ff565b5b813561322b8482602086016131c4565b91505092915050565b60006020828403121561324a57613249612d5a565b5b600082013567ffffffffffffffff81111561326857613267612d5f565b5b61327484828501613206565b91505092915050565b6000806040838503121561329457613293612d5a565b5b60006132a285828601613000565b92505060206132b385828601612e36565b9150509250929050565b600067ffffffffffffffff8211156132d8576132d7613109565b5b6132e182612ebe565b9050602081019050919050565b60006133016132fc846132bd565b613169565b90508281526020810184848401111561331d5761331c613104565b5b6133288482856131b5565b509392505050565b600082601f830112613345576133446130ff565b5b81356133558482602086016132ee565b91505092915050565b6000806000806080858703121561337857613377612d5a565b5b600061338687828801613000565b945050602061339787828801613000565b93505060406133a887828801612f4b565b925050606085013567ffffffffffffffff8111156133c9576133c8612d5f565b5b6133d587828801613330565b91505092959194509250565b600080604083850312156133f8576133f7612d5a565b5b600061340685828601613000565b925050602061341785828601613000565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613457602083612e83565b915061346282613421565b602082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134d457607f821691505b6020821081036134e7576134e661348d565b5b50919050565b600081905092915050565b50565b60006135086000836134ed565b9150613513826134f8565b600082019050919050565b6000613529826134fb565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613569600e83612e83565b915061357482613533565b602082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135c4565b61360b86836135c4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061364861364361363e84612f2a565b613623565b612f2a565b9050919050565b6000819050919050565b6136628361362d565b61367661366e8261364f565b8484546135d1565b825550505050565b600090565b61368b61367e565b613696818484613659565b505050565b5b818110156136ba576136af600082613683565b60018101905061369c565b5050565b601f8211156136ff576136d08161359f565b6136d9846135b4565b810160208510156136e8578190505b6136fc6136f4856135b4565b83018261369b565b50505b505050565b600082821c905092915050565b600061372260001984600802613704565b1980831691505092915050565b600061373b8383613711565b9150826002028217905092915050565b61375482612e78565b67ffffffffffffffff81111561376d5761376c613109565b5b61377782546134bc565b6137828282856136be565b600060209050601f8311600181146137b557600084156137a3578287015190505b6137ad858261372f565b865550613815565b601f1984166137c38661359f565b60005b828110156137eb578489015182556001820191506020850194506020810190506137c6565b868310156138085784890151613804601f891682613711565b8355505b6001600288020188555050505b505050505050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613853600683612e83565b915061385e8261381d565b602082019050919050565b6000602082019050818103600083015261388281613846565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138c382612f2a565b91506138ce83612f2a565b92508282019050808211156138e6576138e5613889565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613922601283612e83565b915061392d826138ec565b602082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b600061398e600a83612e83565b915061399982613958565b602082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006139fa600c83612e83565b9150613a05826139c4565b602082019050919050565b60006020820190508181036000830152613a29816139ed565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a66601683612e83565b9150613a7182613a30565b602082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b6000613aa782612f2a565b9150613ab283612f2a565b9250828202613ac081612f2a565b91508282048414831517613ad757613ad6613889565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613b14601683612e83565b9150613b1f82613ade565b602082019050919050565b60006020820190508181036000830152613b4381613b07565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613b80601583612e83565b9150613b8b82613b4a565b602082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b600081905092915050565b60008154613bce816134bc565b613bd88186613bb6565b94506001821660008114613bf35760018114613c0857613c3b565b60ff1983168652811515820286019350613c3b565b613c118561359f565b60005b83811015613c3357815481890152600182019150602081019050613c14565b838801955050505b50505092915050565b6000613c4f82612e78565b613c598185613bb6565b9350613c69818560208601612e94565b80840191505092915050565b6000613c818286613bc1565b9150613c8d8285613c44565b9150613c998284613c44565b9150819050949350505050565b6000613cb182612fad565b9050919050565b613cc181613ca6565b8114613ccc57600080fd5b50565b600081519050613cde81613cb8565b92915050565b600060208284031215613cfa57613cf9612d5a565b5b6000613d0884828501613ccf565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d6d602683612e83565b9150613d7882613d11565b604082019050919050565b60006020820190508181036000830152613d9c81613d60565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dca82613da3565b613dd48185613dae565b9350613de4818560208601612e94565b613ded81612ebe565b840191505092915050565b6000608082019050613e0d6000830187612fbf565b613e1a6020830186612fbf565b613e276040830185613055565b8181036060830152613e398184613dbf565b905095945050505050565b600081519050613e5381612d90565b92915050565b600060208284031215613e6f57613e6e612d5a565b5b6000613e7d84828501613e44565b91505092915050565b6000613e9182612f2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ec357613ec2613889565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f0882612f2a565b9150613f1383612f2a565b925082613f2357613f22613ece565b5b828204905092915050565b6000613f3982612f2a565b9150613f4483612f2a565b9250828203905081811115613f5c57613f5b613889565b5b92915050565b6000613f6d82612f2a565b9150613f7883612f2a565b925082613f8857613f87613ece565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dbc5e136d44cd8acfb1f458340b39b34442feeb95f1e3c1afd1de087111640c864736f6c6343000812003368747470733a2f2f62616679626569667875686a34746a676f7a62763272746a7074767a6f6a72357961636f7a6e6233616e6b34796f6a646365356d37736c6a3333752e697066732e7733732e6c696e6b2f
Deployed Bytecode
0x6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063cd7c032611610064578063cd7c0326146106bf578063e985e9c5146106ea578063f2fde38b14610727578063f43a22dc14610750576101e3565b8063a22cb46514610605578063b88d4fde1461062e578063c668286214610657578063c87b56dd14610682576101e3565b8063940cd05b116100d1578063940cd05b1461056a57806395d89b4114610593578063a035b1fe146105be578063a0712d68146105e9576101e3565b806370a08231146104c2578063715018a6146104ff5780638da5cb5b1461051657806391b7f5ed14610541576101e3565b806332cb6b0c1161017a57806355f804b31161014957806355f804b3146104065780635c975abb1461042f5780636352211e1461045a5780636c0360eb14610497576101e3565b806332cb6b0c146103705780633ccfd60b1461039b57806342842e0e146103b257806351830227146103db576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612dbc565b61077b565b60405161021c9190612e04565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e4b565b61085d565b005b34801561025a57600080fd5b506102636108f6565b6040516102709190612f08565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f60565b610988565b6040516102ad9190612fce565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190613015565b610a04565b005b3480156102eb57600080fd5b506102f4610b0e565b6040516103019190613064565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c919061307f565b610b25565b60405161033e9190613064565b60405180910390f35b34801561035357600080fd5b5061036e600480360381019061036991906130ac565b610b37565b005b34801561037c57600080fd5b50610385610b47565b6040516103929190613064565b60405180910390f35b3480156103a757600080fd5b506103b0610b4d565b005b3480156103be57600080fd5b506103d960048036038101906103d491906130ac565b610c85565b005b3480156103e757600080fd5b506103f0610ca5565b6040516103fd9190612e04565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190613234565b610cb8565b005b34801561043b57600080fd5b50610444610d47565b6040516104519190612e04565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612f60565b610d5a565b60405161048e9190612fce565b60405180910390f35b3480156104a357600080fd5b506104ac610d70565b6040516104b99190612f08565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e4919061307f565b610dfe565b6040516104f69190613064565b60405180910390f35b34801561050b57600080fd5b50610514610ecd565b005b34801561052257600080fd5b5061052b610f55565b6040516105389190612fce565b60405180910390f35b34801561054d57600080fd5b5061056860048036038101906105639190612f60565b610f7f565b005b34801561057657600080fd5b50610591600480360381019061058c9190612e4b565b611005565b005b34801561059f57600080fd5b506105a861109e565b6040516105b59190612f08565b60405180910390f35b3480156105ca57600080fd5b506105d3611130565b6040516105e09190613064565b60405180910390f35b61060360048036038101906105fe9190612f60565b611136565b005b34801561061157600080fd5b5061062c6004803603810190610627919061327d565b61133b565b005b34801561063a57600080fd5b506106556004803603810190610650919061335e565b6114b2565b005b34801561066357600080fd5b5061066c61152e565b6040516106799190612f08565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190612f60565b611567565b6040516106b69190612f08565b60405180910390f35b3480156106cb57600080fd5b506106d4611696565b6040516106e19190612fce565b60405180910390f35b3480156106f657600080fd5b50610711600480360381019061070c91906133e1565b6116ae565b60405161071e9190612e04565b60405180910390f35b34801561073357600080fd5b5061074e6004803603810190610749919061307f565b611792565b005b34801561075c57600080fd5b50610765611889565b6040516107729190613064565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085657506108558261188e565b5b9050919050565b6108656118f8565b73ffffffffffffffffffffffffffffffffffffffff16610883610f55565b73ffffffffffffffffffffffffffffffffffffffff16146108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d09061346d565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b606060028054610905906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610931906134bc565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b600061099382611900565b6109c9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0f82610d5a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a76576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a956118f8565b73ffffffffffffffffffffffffffffffffffffffff1614158015610ac75750610ac581610ac06118f8565b6116ae565b155b15610afe576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0983838361194e565b505050565b6000610b18611a00565b6001546000540303905090565b6000610b3082611a09565b9050919050565b610b42838383611ad8565b505050565b610d0581565b610b556118f8565b73ffffffffffffffffffffffffffffffffffffffff16610b73610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc09061346d565b60405180910390fd5b60004790506000610bd86118f8565b73ffffffffffffffffffffffffffffffffffffffff1682604051610bfb9061351e565b60006040518083038185875af1925050503d8060008114610c38576040519150601f19603f3d011682016040523d82523d6000602084013e610c3d565b606091505b5050905080610c81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c789061357f565b60405180910390fd5b5050565b610ca0838383604051806020016040528060008152506114b2565b505050565b600b60019054906101000a900460ff1681565b610cc06118f8565b73ffffffffffffffffffffffffffffffffffffffff16610cde610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b9061346d565b60405180910390fd5b8060099081610d43919061374b565b5050565b600b60009054906101000a900460ff1681565b6000610d6582611fc7565b600001519050919050565b60098054610d7d906134bc565b80601f0160208091040260200160405190810160405280929190818152602001828054610da9906134bc565b8015610df65780601f10610dcb57610100808354040283529160200191610df6565b820191906000526020600020905b815481529060010190602001808311610dd957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e65576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ed56118f8565b73ffffffffffffffffffffffffffffffffffffffff16610ef3610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f409061346d565b60405180910390fd5b610f536000612256565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f876118f8565b73ffffffffffffffffffffffffffffffffffffffff16610fa5610f55565b73ffffffffffffffffffffffffffffffffffffffff1614610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff29061346d565b60405180910390fd5b80600a8190555050565b61100d6118f8565b73ffffffffffffffffffffffffffffffffffffffff1661102b610f55565b73ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110789061346d565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b6060600380546110ad906134bc565b80601f01602080910402602001604051908101604052809291908181526020018280546110d9906134bc565b80156111265780601f106110fb57610100808354040283529160200191611126565b820191906000526020600020905b81548152906001019060200180831161110957829003601f168201915b5050505050905090565b600a5481565b60006111406118f8565b9050600b60009054906101000a900460ff1615611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613869565b60405180910390fd5b8161119b610b0e565b6111a591906138b8565b610d0510156111e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e090613938565b60405180910390fd5b6000821161122c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611223906139a4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461129a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129190613a10565b60405180910390fd5b81600510156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613a7c565b60405180910390fd5b34600a54836112ed9190613a9c565b1461132d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132490613b2a565b60405180910390fd5b611337818361231c565b5050565b6113436118f8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006113b46118f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114616118f8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a69190612e04565b60405180910390a35050565b6114bd848484611ad8565b6114dc8373ffffffffffffffffffffffffffffffffffffffff1661233a565b80156114f157506114ef8484848461235d565b155b15611528576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061157282611900565b6115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613b96565b60405180910390fd5b6000600980546115c0906134bc565b9050116115dc576040518060200160405280600081525061168f565b6009600b60019054906101000a900460ff1661162d576040518060400160405280600b81526020017f706c616365686f6c646572000000000000000000000000000000000000000000815250611637565b611636836124ad565b5b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161167f93929190613c75565b6040516020818303038152906040525b9050919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016117189190612fce565b602060405180830381865afa158015611735573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117599190613ce4565b73ffffffffffffffffffffffffffffffffffffffff160361177e57600191505061178c565b611788848461260d565b9150505b92915050565b61179a6118f8565b73ffffffffffffffffffffffffffffffffffffffff166117b8610f55565b73ffffffffffffffffffffffffffffffffffffffff161461180e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118059061346d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613d83565b60405180910390fd5b61188681612256565b50565b600581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008161190b611a00565b1115801561191a575060005482105b8015611947575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a70576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611ae382611fc7565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b0a6118f8565b73ffffffffffffffffffffffffffffffffffffffff161480611b3d5750611b3c8260000151611b376118f8565b6116ae565b5b80611b825750611b4b6118f8565b73ffffffffffffffffffffffffffffffffffffffff16611b6a84610988565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611bbb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c24576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611c8a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c9785858560016126a1565b611ca7600084846000015161194e565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611f5757600054811015611f565782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611fc085858560016126a7565b5050505050565b611fcf612d0d565b600082905080611fdd611a00565b11158015611fec575060005481105b1561221f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161221d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612101578092505050612251565b5b60011561221c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612217578092505050612251565b612102565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123368282604051806020016040528060008152506126ad565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123836118f8565b8786866040518563ffffffff1660e01b81526004016123a59493929190613df8565b6020604051808303816000875af19250505080156123e157506040513d601f19601f820116820180604052508101906123de9190613e59565b60015b61245a573d8060008114612411576040519150601f19603f3d011682016040523d82523d6000602084013e612416565b606091505b506000815103612452576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082036124f4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612608565b600082905060005b6000821461252657808061250f90613e86565b915050600a8261251f9190613efd565b91506124fc565b60008167ffffffffffffffff81111561254257612541613109565b5b6040519080825280601f01601f1916602001820160405280156125745781602001600182028036833780820191505090505b5090505b600085146126015760018261258d9190613f2e565b9150600a8561259c9190613f62565b60306125a891906138b8565b60f81b8183815181106125be576125bd613f93565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125fa9190613efd565b9450612578565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b6126ba83838360016126bf565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361272b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612765576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277260008683876126a1565b73a5f6d896e8b4d29ac6e5d8c4b26f8d2073ac90ae73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806127ff5750736ea8f3b9187df360b0c3e76549b22095acae771b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612849575073e749e9e7eaa02203c925a036226af80e2c79403e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128935750734209c04095e0736546ddccb3360ccefa13909d8a73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806128dd575073f8d4454b0a7544b3c13816acd76b93bc94b5d97773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129275750735d4b1055a69eadaba6de6c537a17aeb01207dfda73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b80612971575073fd2204757ab46355e60251386f823960acccefe773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b806129bb575073f59eafd5ee67ec7be2fc150069b117b618b0484e73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16145b156129f657600080600090505b615ecd8110156129f35781806129dd90613e86565b92505080806129eb90613e86565b9150506129c8565b50505b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612bc05750612bbf8773ffffffffffffffffffffffffffffffffffffffff1661233a565b5b15612c85575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c35600088848060010195508861235d565b612c6b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612bc6578260005414612c8057600080fd5b612cf0565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612c86575b816000819055505050612d0660008683876126a7565b5050505050565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d9981612d64565b8114612da457600080fd5b50565b600081359050612db681612d90565b92915050565b600060208284031215612dd257612dd1612d5a565b5b6000612de084828501612da7565b91505092915050565b60008115159050919050565b612dfe81612de9565b82525050565b6000602082019050612e196000830184612df5565b92915050565b612e2881612de9565b8114612e3357600080fd5b50565b600081359050612e4581612e1f565b92915050565b600060208284031215612e6157612e60612d5a565b5b6000612e6f84828501612e36565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eb2578082015181840152602081019050612e97565b60008484015250505050565b6000601f19601f8301169050919050565b6000612eda82612e78565b612ee48185612e83565b9350612ef4818560208601612e94565b612efd81612ebe565b840191505092915050565b60006020820190508181036000830152612f228184612ecf565b905092915050565b6000819050919050565b612f3d81612f2a565b8114612f4857600080fd5b50565b600081359050612f5a81612f34565b92915050565b600060208284031215612f7657612f75612d5a565b5b6000612f8484828501612f4b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612fb882612f8d565b9050919050565b612fc881612fad565b82525050565b6000602082019050612fe36000830184612fbf565b92915050565b612ff281612fad565b8114612ffd57600080fd5b50565b60008135905061300f81612fe9565b92915050565b6000806040838503121561302c5761302b612d5a565b5b600061303a85828601613000565b925050602061304b85828601612f4b565b9150509250929050565b61305e81612f2a565b82525050565b60006020820190506130796000830184613055565b92915050565b60006020828403121561309557613094612d5a565b5b60006130a384828501613000565b91505092915050565b6000806000606084860312156130c5576130c4612d5a565b5b60006130d386828701613000565b93505060206130e486828701613000565b92505060406130f586828701612f4b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61314182612ebe565b810181811067ffffffffffffffff821117156131605761315f613109565b5b80604052505050565b6000613173612d50565b905061317f8282613138565b919050565b600067ffffffffffffffff82111561319f5761319e613109565b5b6131a882612ebe565b9050602081019050919050565b82818337600083830152505050565b60006131d76131d284613184565b613169565b9050828152602081018484840111156131f3576131f2613104565b5b6131fe8482856131b5565b509392505050565b600082601f83011261321b5761321a6130ff565b5b813561322b8482602086016131c4565b91505092915050565b60006020828403121561324a57613249612d5a565b5b600082013567ffffffffffffffff81111561326857613267612d5f565b5b61327484828501613206565b91505092915050565b6000806040838503121561329457613293612d5a565b5b60006132a285828601613000565b92505060206132b385828601612e36565b9150509250929050565b600067ffffffffffffffff8211156132d8576132d7613109565b5b6132e182612ebe565b9050602081019050919050565b60006133016132fc846132bd565b613169565b90508281526020810184848401111561331d5761331c613104565b5b6133288482856131b5565b509392505050565b600082601f830112613345576133446130ff565b5b81356133558482602086016132ee565b91505092915050565b6000806000806080858703121561337857613377612d5a565b5b600061338687828801613000565b945050602061339787828801613000565b93505060406133a887828801612f4b565b925050606085013567ffffffffffffffff8111156133c9576133c8612d5f565b5b6133d587828801613330565b91505092959194509250565b600080604083850312156133f8576133f7612d5a565b5b600061340685828601613000565b925050602061341785828601613000565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613457602083612e83565b915061346282613421565b602082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134d457607f821691505b6020821081036134e7576134e661348d565b5b50919050565b600081905092915050565b50565b60006135086000836134ed565b9150613513826134f8565b600082019050919050565b6000613529826134fb565b9150819050919050565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b6000613569600e83612e83565b915061357482613533565b602082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026136017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826135c4565b61360b86836135c4565b95508019841693508086168417925050509392505050565b6000819050919050565b600061364861364361363e84612f2a565b613623565b612f2a565b9050919050565b6000819050919050565b6136628361362d565b61367661366e8261364f565b8484546135d1565b825550505050565b600090565b61368b61367e565b613696818484613659565b505050565b5b818110156136ba576136af600082613683565b60018101905061369c565b5050565b601f8211156136ff576136d08161359f565b6136d9846135b4565b810160208510156136e8578190505b6136fc6136f4856135b4565b83018261369b565b50505b505050565b600082821c905092915050565b600061372260001984600802613704565b1980831691505092915050565b600061373b8383613711565b9150826002028217905092915050565b61375482612e78565b67ffffffffffffffff81111561376d5761376c613109565b5b61377782546134bc565b6137828282856136be565b600060209050601f8311600181146137b557600084156137a3578287015190505b6137ad858261372f565b865550613815565b601f1984166137c38661359f565b60005b828110156137eb578489015182556001820191506020850194506020810190506137c6565b868310156138085784890151613804601f891682613711565b8355505b6001600288020188555050505b505050505050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613853600683612e83565b915061385e8261381d565b602082019050919050565b6000602082019050818103600083015261388281613846565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006138c382612f2a565b91506138ce83612f2a565b92508282019050808211156138e6576138e5613889565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000613922601283612e83565b915061392d826138ec565b602082019050919050565b6000602082019050818103600083015261395181613915565b9050919050565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b600061398e600a83612e83565b915061399982613958565b602082019050919050565b600060208201905081810360008301526139bd81613981565b9050919050565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b60006139fa600c83612e83565b9150613a05826139c4565b602082019050919050565b60006020820190508181036000830152613a29816139ed565b9050919050565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b6000613a66601683612e83565b9150613a7182613a30565b602082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b6000613aa782612f2a565b9150613ab283612f2a565b9250828202613ac081612f2a565b91508282048414831517613ad757613ad6613889565b5b5092915050565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b6000613b14601683612e83565b9150613b1f82613ade565b602082019050919050565b60006020820190508181036000830152613b4381613b07565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613b80601583612e83565b9150613b8b82613b4a565b602082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b600081905092915050565b60008154613bce816134bc565b613bd88186613bb6565b94506001821660008114613bf35760018114613c0857613c3b565b60ff1983168652811515820286019350613c3b565b613c118561359f565b60005b83811015613c3357815481890152600182019150602081019050613c14565b838801955050505b50505092915050565b6000613c4f82612e78565b613c598185613bb6565b9350613c69818560208601612e94565b80840191505092915050565b6000613c818286613bc1565b9150613c8d8285613c44565b9150613c998284613c44565b9150819050949350505050565b6000613cb182612fad565b9050919050565b613cc181613ca6565b8114613ccc57600080fd5b50565b600081519050613cde81613cb8565b92915050565b600060208284031215613cfa57613cf9612d5a565b5b6000613d0884828501613ccf565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d6d602683612e83565b9150613d7882613d11565b604082019050919050565b60006020820190508181036000830152613d9c81613d60565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dca82613da3565b613dd48185613dae565b9350613de4818560208601612e94565b613ded81612ebe565b840191505092915050565b6000608082019050613e0d6000830187612fbf565b613e1a6020830186612fbf565b613e276040830185613055565b8181036060830152613e398184613dbf565b905095945050505050565b600081519050613e5381612d90565b92915050565b600060208284031215613e6f57613e6e612d5a565b5b6000613e7d84828501613e44565b91505092915050565b6000613e9182612f2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ec357613ec2613889565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f0882612f2a565b9150613f1383612f2a565b925082613f2357613f22613ece565b5b828204905092915050565b6000613f3982612f2a565b9150613f4483612f2a565b9250828203905081811115613f5c57613f5b613889565b5b92915050565b6000613f6d82612f2a565b9150613f7883612f2a565b925082613f8857613f87613ece565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220dbc5e136d44cd8acfb1f458340b39b34442feeb95f1e3c1afd1de087111640c864736f6c63430008120033
Deployed Bytecode Sourcemap
46207:2737:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28003:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48263:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31388:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32891:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32454:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27252:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47835:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33748:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46562:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47952:209;;;;;;;;;;;;;:::i;:::-;;33989:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46685:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48444:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46653:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31197:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46251:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28372:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2477:103;;;;;;;;;;;;;:::i;:::-;;1826:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48169:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48352:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31557:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46610:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46769:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33167:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34245:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46366:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48552:389;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46419:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47382:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2735:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46517:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28003:305;28105:4;28157:25;28142:40;;;:11;:40;;;;:105;;;;28214:33;28199:48;;;:11;:48;;;;28142:105;:158;;;;28264:36;28288:11;28264:23;:36::i;:::-;28142:158;28122:178;;28003:305;;;:::o;48263:81::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48330:6:::1;48321;;:15;;;;;;;;;;;;;;;;;;48263:81:::0;:::o;31388:100::-;31442:13;31475:5;31468:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31388:100;:::o;32891:204::-;32959:7;32984:16;32992:7;32984;:16::i;:::-;32979:64;;33009:34;;;;;;;;;;;;;;32979:64;33063:15;:24;33079:7;33063:24;;;;;;;;;;;;;;;;;;;;;33056:31;;32891:204;;;:::o;32454:371::-;32527:13;32543:24;32559:7;32543:15;:24::i;:::-;32527:40;;32588:5;32582:11;;:2;:11;;;32578:48;;32602:24;;;;;;;;;;;;;;32578:48;32659:5;32643:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;32669:37;32686:5;32693:12;:10;:12::i;:::-;32669:16;:37::i;:::-;32668:38;32643:63;32639:138;;;32730:35;;;;;;;;;;;;;;32639:138;32789:28;32798:2;32802:7;32811:5;32789:8;:28::i;:::-;32516:309;32454:371;;:::o;27252:303::-;27296:7;27521:15;:13;:15::i;:::-;27506:12;;27490:13;;:28;:46;27483:53;;27252:303;:::o;47835:109::-;47888:7;47915:21;47929:6;47915:13;:21::i;:::-;47908:28;;47835:109;;;:::o;33748:170::-;33882:28;33892:4;33898:2;33902:7;33882:9;:28::i;:::-;33748:170;;;:::o;46562:41::-;46599:4;46562:41;:::o;47952:209::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48002:15:::1;48020:21;48002:39;;48053:12;48071;:10;:12::i;:::-;:17;;48096:7;48071:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48052:56;;;48127:7;48119:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47991:170;;47952:209::o:0;33989:185::-;34127:39;34144:4;34150:2;34154:7;34127:39;;;;;;;;;;;;:16;:39::i;:::-;33989:185;;;:::o;46685:27::-;;;;;;;;;;;;;:::o;48444:100::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48528:8:::1;48518:7;:18;;;;;;:::i;:::-;;48444:100:::0;:::o;46653:25::-;;;;;;;;;;;;;:::o;31197:124::-;31261:7;31288:20;31300:7;31288:11;:20::i;:::-;:25;;;31281:32;;31197:124;;;:::o;46251:108::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28372:206::-;28436:7;28477:1;28460:19;;:5;:19;;;28456:60;;28488:28;;;;;;;;;;;;;;28456:60;28542:12;:19;28555:5;28542:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28534:36;;28527:43;;28372:206;;;:::o;2477:103::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2542:30:::1;2569:1;2542:18;:30::i;:::-;2477:103::o:0;1826:87::-;1872:7;1899:6;;;;;;;;;;;1892:13;;1826:87;:::o;48169:86::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48241:6:::1;48233:5;:14;;;;48169:86:::0;:::o;48352:84::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48422:6:::1;48411:8;;:17;;;;;;;;;;;;;;;;;;48352:84:::0;:::o;31557:104::-;31613:13;31646:7;31639:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31557:104;:::o;46610:34::-;;;;:::o;46769:496::-;46828:15;46846:12;:10;:12::i;:::-;46828:30;;46878:6;;;;;;;;;;;46877:7;46869:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;46944:7;46928:13;:11;:13::i;:::-;:23;;;;:::i;:::-;46599:4;46914:37;;46906:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47003:1;46993:7;:11;46985:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;47051:7;47038:20;;:9;:20;;;47030:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;47108:7;46554:1;47094:21;;47086:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;47181:9;47172:5;;47162:7;:15;;;;:::i;:::-;:28;47154:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47230:27;47240:7;47249;47230:9;:27::i;:::-;46817:448;46769:496;:::o;33167:279::-;33270:12;:10;:12::i;:::-;33258:24;;:8;:24;;;33254:54;;33291:17;;;;;;;;;;;;;;33254:54;33366:8;33321:18;:32;33340:12;:10;:12::i;:::-;33321:32;;;;;;;;;;;;;;;:42;33354:8;33321:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33419:8;33390:48;;33405:12;:10;:12::i;:::-;33390:48;;;33429:8;33390:48;;;;;;:::i;:::-;;;;;;;;33167:279;;:::o;34245:369::-;34412:28;34422:4;34428:2;34432:7;34412:9;:28::i;:::-;34455:15;:2;:13;;;:15::i;:::-;:76;;;;;34475:56;34506:4;34512:2;34516:7;34525:5;34475:30;:56::i;:::-;34474:57;34455:76;34451:156;;;34555:40;;;;;;;;;;;;;;34451:156;34245:369;;;;:::o;46366:46::-;;;;;;;;;;;;;;;;;;;:::o;48552:389::-;48618:13;48652:17;48660:8;48652:7;:17::i;:::-;48644:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;48737:1;48719:7;48713:21;;;;;:::i;:::-;;;:25;:220;;;;;;;;;;;;;;;;;48795:7;48819:8;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;;;;;48830:26;48847:8;48830:16;:26::i;:::-;48819:53;48889:13;;;;;;;;;;;;;;;;;48762:155;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48713:220;48706:227;;48552:389;;;:::o;46419:89::-;46466:42;46419:89;:::o;47382:445::-;47507:4;47592:27;46466:42;47592:65;;47713:8;47672:49;;47680:13;:21;;;47702:5;47680:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47672:49;;;47668:93;;47745:4;47738:11;;;;;47668:93;47780:39;47803:5;47810:8;47780:22;:39::i;:::-;47773:46;;;47382:445;;;;;:::o;2735:201::-;2057:12;:10;:12::i;:::-;2046:23;;:7;:5;:7::i;:::-;:23;;;2038:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2844:1:::1;2824:22;;:8;:22;;::::0;2816:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2900:28;2919:8;2900:18;:28::i;:::-;2735:201:::0;:::o;46517:38::-;46554:1;46517:38;:::o;23384:157::-;23469:4;23508:25;23493:40;;;:11;:40;;;;23486:47;;23384:157;;;:::o;567:98::-;620:7;647:10;640:17;;567:98;:::o;34869:187::-;34926:4;34969:7;34950:15;:13;:15::i;:::-;:26;;:53;;;;;34990:13;;34980:7;:23;34950:53;:98;;;;;35021:11;:20;35033:7;35021:20;;;;;;;;;;;:27;;;;;;;;;;;;35020:28;34950:98;34943:105;;34869:187;;;:::o;43185:196::-;43327:2;43300:15;:24;43316:7;43300:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43365:7;43361:2;43345:28;;43354:5;43345:28;;;;;;;;;;;;43185:196;;;:::o;47273:101::-;47338:7;47365:1;47358:8;;47273:101;:::o;28660:207::-;28721:7;28762:1;28745:19;;:5;:19;;;28741:59;;28773:27;;;;;;;;;;;;;;28741:59;28826:12;:19;28839:5;28826:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28818:41;;28811:48;;28660:207;;;:::o;38687:2112::-;38802:35;38840:20;38852:7;38840:11;:20::i;:::-;38802:58;;38873:22;38915:13;:18;;;38899:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;38950:50;38967:13;:18;;;38987:12;:10;:12::i;:::-;38950:16;:50::i;:::-;38899:101;:154;;;;39041:12;:10;:12::i;:::-;39017:36;;:20;39029:7;39017:11;:20::i;:::-;:36;;;38899:154;38873:181;;39072:17;39067:66;;39098:35;;;;;;;;;;;;;;39067:66;39170:4;39148:26;;:13;:18;;;:26;;;39144:67;;39183:28;;;;;;;;;;;;;;39144:67;39240:1;39226:16;;:2;:16;;;39222:52;;39251:23;;;;;;;;;;;;;;39222:52;39287:43;39309:4;39315:2;39319:7;39328:1;39287:21;:43::i;:::-;39395:49;39412:1;39416:7;39425:13;:18;;;39395:8;:49::i;:::-;39770:1;39740:12;:18;39753:4;39740:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39814:1;39786:12;:16;39799:2;39786:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39860:2;39832:11;:20;39844:7;39832:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;39922:15;39877:11;:20;39889:7;39877:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40190:19;40222:1;40212:7;:11;40190:33;;40283:1;40242:43;;:11;:24;40254:11;40242:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40238:445;;40467:13;;40453:11;:27;40449:219;;;40537:13;:18;;;40505:11;:24;40517:11;40505:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40620:13;:28;;;40578:11;:24;40590:11;40578:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40449:219;40238:445;39715:979;40730:7;40726:2;40711:27;;40720:4;40711:27;;;;;;;;;;;;40749:42;40770:4;40776:2;40780:7;40789:1;40749:20;:42::i;:::-;38791:2008;;38687:2112;;;:::o;30027:1108::-;30088:21;;:::i;:::-;30122:12;30137:7;30122:22;;30205:4;30186:15;:13;:15::i;:::-;:23;;:47;;;;;30220:13;;30213:4;:20;30186:47;30182:886;;;30254:31;30288:11;:17;30300:4;30288:17;;;;;;;;;;;30254:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30329:9;:16;;;30324:729;;30400:1;30374:28;;:9;:14;;;:28;;;30370:101;;30438:9;30431:16;;;;;;30370:101;30773:261;30780:4;30773:261;;;30813:6;;;;;;;;30858:11;:17;30870:4;30858:17;;;;;;;;;;;30846:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30932:1;30906:28;;:9;:14;;;:28;;;30902:109;;30974:9;30967:16;;;;;;30902:109;30773:261;;;30324:729;30235:833;30182:886;31096:31;;;;;;;;;;;;;;30027:1108;;;;:::o;3096:191::-;3170:16;3189:6;;;;;;;;;;;3170:25;;3215:8;3206:6;;:17;;;;;;;;;;;;;;;;;;3270:8;3239:40;;3260:8;3239:40;;;;;;;;;;;;3159:128;3096:191;:::o;35064:104::-;35133:27;35143:2;35147:8;35133:27;;;;;;;;;;;;:9;:27::i;:::-;35064:104;;:::o;13157:326::-;13217:4;13474:1;13452:7;:19;;;:23;13445:30;;13157:326;;;:::o;43873:667::-;44036:4;44073:2;44057:36;;;44094:12;:10;:12::i;:::-;44108:4;44114:7;44123:5;44057:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44053:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44308:1;44291:6;:13;:18;44287:235;;44337:40;;;;;;;;;;;;;;44287:235;44480:6;44474:13;44465:6;44461:2;44457:15;44450:38;44053:480;44186:45;;;44176:55;;;:6;:55;;;;44169:62;;;43873:667;;;;;;:::o;20777:723::-;20833:13;21063:1;21054:5;:10;21050:53;;21081:10;;;;;;;;;;;;;;;;;;;;;21050:53;21113:12;21128:5;21113:20;;21144:14;21169:78;21184:1;21176:4;:9;21169:78;;21202:8;;;;;:::i;:::-;;;;21233:2;21225:10;;;;;:::i;:::-;;;21169:78;;;21257:19;21289:6;21279:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21257:39;;21307:154;21323:1;21314:5;:10;21307:154;;21351:1;21341:11;;;;;:::i;:::-;;;21418:2;21410:5;:10;;;;:::i;:::-;21397:2;:24;;;;:::i;:::-;21384:39;;21367:6;21374;21367:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21447:2;21438:11;;;;;:::i;:::-;;;21307:154;;;21485:6;21471:21;;;;;20777:723;;;;:::o;33517:164::-;33614:4;33638:18;:25;33657:5;33638:25;;;;;;;;;;;;;;;:35;33664:8;33638:35;;;;;;;;;;;;;;;;;;;;;;;;;33631:42;;33517:164;;;;:::o;45188:159::-;;;;;:::o;46006:158::-;;;;;:::o;35531:163::-;35654:32;35660:2;35664:8;35674:5;35681:4;35654:5;:32::i;:::-;35531:163;;;:::o;35953:2480::-;36092:20;36115:13;;36092:36;;36157:1;36143:16;;:2;:16;;;36139:48;;36168:19;;;;;;;;;;;;;;36139:48;36214:1;36202:8;:13;36198:44;;36224:18;;;;;;;;;;;;;;36198:44;36255:61;36285:1;36289:2;36293:12;36307:8;36255:21;:61::i;:::-;36382:42;36376:48;;:2;:48;;;:113;;;;36447:42;36441:48;;:2;:48;;;36376:113;:178;;;;36512:42;36506:48;;:2;:48;;;36376:178;:243;;;;36577:42;36571:48;;:2;:48;;;36376:243;:308;;;;36642:42;36636:48;;:2;:48;;;36376:308;:373;;;;36707:42;36701:48;;:2;:48;;;36376:373;:438;;;;36772:42;36766:48;;:2;:48;;;36376:438;:503;;;;36837:42;36831:48;;:2;:48;;;36376:503;36359:663;;;36905:15;36940:6;36949:1;36940:10;;36935:76;36956:5;36952:1;:9;36935:76;;;36986:9;;;;;:::i;:::-;;;;36963:3;;;;;:::i;:::-;;;;36935:76;;;;36890:132;36359:663;37333:8;37298:12;:16;37311:2;37298:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37397:8;37357:12;:16;37370:2;37357:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37456:2;37423:11;:25;37435:12;37423:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37523:15;37473:11;:25;37485:12;37473:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37556:20;37579:12;37556:35;;37606:11;37635:8;37620:12;:23;37606:37;;37664:4;:23;;;;;37672:15;:2;:13;;;:15::i;:::-;37664:23;37660:641;;;37708:314;37764:12;37760:2;37739:38;;37756:1;37739:38;;;;;;;;;;;;37805:69;37844:1;37848:2;37852:14;;;;;;37868:5;37805:30;:69::i;:::-;37800:174;;37910:40;;;;;;;;;;;;;;37800:174;38017:3;38001:12;:19;37708:314;;38103:12;38086:13;;:29;38082:43;;38117:8;;;38082:43;37660:641;;;38166:120;38222:14;;;;;;38218:2;38197:40;;38214:1;38197:40;;;;;;;;;;;;38281:3;38265:12;:19;38166:120;;37660:641;38331:12;38315:13;:28;;;;37273:1082;;38365:60;38394:1;38398:2;38402:12;38416:8;38365:20;:60::i;:::-;36081:2352;35953:2480;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:246::-;2469:1;2479:113;2493:6;2490:1;2487:13;2479:113;;;2578:1;2573:3;2569:11;2563:18;2559:1;2554:3;2550:11;2543:39;2515:2;2512:1;2508:10;2503:15;;2479:113;;;2626:1;2617:6;2612:3;2608:16;2601:27;2450:184;2388:246;;;:::o;2640:102::-;2681:6;2732:2;2728:7;2723:2;2716:5;2712:14;2708:28;2698:38;;2640:102;;;:::o;2748:377::-;2836:3;2864:39;2897:5;2864:39;:::i;:::-;2919:71;2983:6;2978:3;2919:71;:::i;:::-;2912:78;;2999:65;3057:6;3052:3;3045:4;3038:5;3034:16;2999:65;:::i;:::-;3089:29;3111:6;3089:29;:::i;:::-;3084:3;3080:39;3073:46;;2840:285;2748:377;;;;:::o;3131:313::-;3244:4;3282:2;3271:9;3267:18;3259:26;;3331:9;3325:4;3321:20;3317:1;3306:9;3302:17;3295:47;3359:78;3432:4;3423:6;3359:78;:::i;:::-;3351:86;;3131:313;;;;:::o;3450:77::-;3487:7;3516:5;3505:16;;3450:77;;;:::o;3533:122::-;3606:24;3624:5;3606:24;:::i;:::-;3599:5;3596:35;3586:63;;3645:1;3642;3635:12;3586:63;3533:122;:::o;3661:139::-;3707:5;3745:6;3732:20;3723:29;;3761:33;3788:5;3761:33;:::i;:::-;3661:139;;;;:::o;3806:329::-;3865:6;3914:2;3902:9;3893:7;3889:23;3885:32;3882:119;;;3920:79;;:::i;:::-;3882:119;4040:1;4065:53;4110:7;4101:6;4090:9;4086:22;4065:53;:::i;:::-;4055:63;;4011:117;3806:329;;;;:::o;4141:126::-;4178:7;4218:42;4211:5;4207:54;4196:65;;4141:126;;;:::o;4273:96::-;4310:7;4339:24;4357:5;4339:24;:::i;:::-;4328:35;;4273:96;;;:::o;4375:118::-;4462:24;4480:5;4462:24;:::i;:::-;4457:3;4450:37;4375:118;;:::o;4499:222::-;4592:4;4630:2;4619:9;4615:18;4607:26;;4643:71;4711:1;4700:9;4696:17;4687:6;4643:71;:::i;:::-;4499:222;;;;:::o;4727:122::-;4800:24;4818:5;4800:24;:::i;:::-;4793:5;4790:35;4780:63;;4839:1;4836;4829:12;4780:63;4727:122;:::o;4855:139::-;4901:5;4939:6;4926:20;4917:29;;4955:33;4982:5;4955:33;:::i;:::-;4855:139;;;;:::o;5000:474::-;5068:6;5076;5125:2;5113:9;5104:7;5100:23;5096:32;5093:119;;;5131:79;;:::i;:::-;5093:119;5251:1;5276:53;5321:7;5312:6;5301:9;5297:22;5276:53;:::i;:::-;5266:63;;5222:117;5378:2;5404:53;5449:7;5440:6;5429:9;5425:22;5404:53;:::i;:::-;5394:63;;5349:118;5000:474;;;;;:::o;5480:118::-;5567:24;5585:5;5567:24;:::i;:::-;5562:3;5555:37;5480:118;;:::o;5604:222::-;5697:4;5735:2;5724:9;5720:18;5712:26;;5748:71;5816:1;5805:9;5801:17;5792:6;5748:71;:::i;:::-;5604:222;;;;:::o;5832:329::-;5891:6;5940:2;5928:9;5919:7;5915:23;5911:32;5908:119;;;5946:79;;:::i;:::-;5908:119;6066:1;6091:53;6136:7;6127:6;6116:9;6112:22;6091:53;:::i;:::-;6081:63;;6037:117;5832:329;;;;:::o;6167:619::-;6244:6;6252;6260;6309:2;6297:9;6288:7;6284:23;6280:32;6277:119;;;6315:79;;:::i;:::-;6277:119;6435:1;6460:53;6505:7;6496:6;6485:9;6481:22;6460:53;:::i;:::-;6450:63;;6406:117;6562:2;6588:53;6633:7;6624:6;6613:9;6609:22;6588:53;:::i;:::-;6578:63;;6533:118;6690:2;6716:53;6761:7;6752:6;6741:9;6737:22;6716:53;:::i;:::-;6706:63;;6661:118;6167:619;;;;;:::o;6792:117::-;6901:1;6898;6891:12;6915:117;7024:1;7021;7014:12;7038:180;7086:77;7083:1;7076:88;7183:4;7180:1;7173:15;7207:4;7204:1;7197:15;7224:281;7307:27;7329:4;7307:27;:::i;:::-;7299:6;7295:40;7437:6;7425:10;7422:22;7401:18;7389:10;7386:34;7383:62;7380:88;;;7448:18;;:::i;:::-;7380:88;7488:10;7484:2;7477:22;7267:238;7224:281;;:::o;7511:129::-;7545:6;7572:20;;:::i;:::-;7562:30;;7601:33;7629:4;7621:6;7601:33;:::i;:::-;7511:129;;;:::o;7646:308::-;7708:4;7798:18;7790:6;7787:30;7784:56;;;7820:18;;:::i;:::-;7784:56;7858:29;7880:6;7858:29;:::i;:::-;7850:37;;7942:4;7936;7932:15;7924:23;;7646:308;;;:::o;7960:146::-;8057:6;8052:3;8047;8034:30;8098:1;8089:6;8084:3;8080:16;8073:27;7960:146;;;:::o;8112:425::-;8190:5;8215:66;8231:49;8273:6;8231:49;:::i;:::-;8215:66;:::i;:::-;8206:75;;8304:6;8297:5;8290:21;8342:4;8335:5;8331:16;8380:3;8371:6;8366:3;8362:16;8359:25;8356:112;;;8387:79;;:::i;:::-;8356:112;8477:54;8524:6;8519:3;8514;8477:54;:::i;:::-;8196:341;8112:425;;;;;:::o;8557:340::-;8613:5;8662:3;8655:4;8647:6;8643:17;8639:27;8629:122;;8670:79;;:::i;:::-;8629:122;8787:6;8774:20;8812:79;8887:3;8879:6;8872:4;8864:6;8860:17;8812:79;:::i;:::-;8803:88;;8619:278;8557:340;;;;:::o;8903:509::-;8972:6;9021:2;9009:9;9000:7;8996:23;8992:32;8989:119;;;9027:79;;:::i;:::-;8989:119;9175:1;9164:9;9160:17;9147:31;9205:18;9197:6;9194:30;9191:117;;;9227:79;;:::i;:::-;9191:117;9332:63;9387:7;9378:6;9367:9;9363:22;9332:63;:::i;:::-;9322:73;;9118:287;8903:509;;;;:::o;9418:468::-;9483:6;9491;9540:2;9528:9;9519:7;9515:23;9511:32;9508:119;;;9546:79;;:::i;:::-;9508:119;9666:1;9691:53;9736:7;9727:6;9716:9;9712:22;9691:53;:::i;:::-;9681:63;;9637:117;9793:2;9819:50;9861:7;9852:6;9841:9;9837:22;9819:50;:::i;:::-;9809:60;;9764:115;9418:468;;;;;:::o;9892:307::-;9953:4;10043:18;10035:6;10032:30;10029:56;;;10065:18;;:::i;:::-;10029:56;10103:29;10125:6;10103:29;:::i;:::-;10095:37;;10187:4;10181;10177:15;10169:23;;9892:307;;;:::o;10205:423::-;10282:5;10307:65;10323:48;10364:6;10323:48;:::i;:::-;10307:65;:::i;:::-;10298:74;;10395:6;10388:5;10381:21;10433:4;10426:5;10422:16;10471:3;10462:6;10457:3;10453:16;10450:25;10447:112;;;10478:79;;:::i;:::-;10447:112;10568:54;10615:6;10610:3;10605;10568:54;:::i;:::-;10288:340;10205:423;;;;;:::o;10647:338::-;10702:5;10751:3;10744:4;10736:6;10732:17;10728:27;10718:122;;10759:79;;:::i;:::-;10718:122;10876:6;10863:20;10901:78;10975:3;10967:6;10960:4;10952:6;10948:17;10901:78;:::i;:::-;10892:87;;10708:277;10647:338;;;;:::o;10991:943::-;11086:6;11094;11102;11110;11159:3;11147:9;11138:7;11134:23;11130:33;11127:120;;;11166:79;;:::i;:::-;11127:120;11286:1;11311:53;11356:7;11347:6;11336:9;11332:22;11311:53;:::i;:::-;11301:63;;11257:117;11413:2;11439:53;11484:7;11475:6;11464:9;11460:22;11439:53;:::i;:::-;11429:63;;11384:118;11541:2;11567:53;11612:7;11603:6;11592:9;11588:22;11567:53;:::i;:::-;11557:63;;11512:118;11697:2;11686:9;11682:18;11669:32;11728:18;11720:6;11717:30;11714:117;;;11750:79;;:::i;:::-;11714:117;11855:62;11909:7;11900:6;11889:9;11885:22;11855:62;:::i;:::-;11845:72;;11640:287;10991:943;;;;;;;:::o;11940:474::-;12008:6;12016;12065:2;12053:9;12044:7;12040:23;12036:32;12033:119;;;12071:79;;:::i;:::-;12033:119;12191:1;12216:53;12261:7;12252:6;12241:9;12237:22;12216:53;:::i;:::-;12206:63;;12162:117;12318:2;12344:53;12389:7;12380:6;12369:9;12365:22;12344:53;:::i;:::-;12334:63;;12289:118;11940:474;;;;;:::o;12420:182::-;12560:34;12556:1;12548:6;12544:14;12537:58;12420:182;:::o;12608:366::-;12750:3;12771:67;12835:2;12830:3;12771:67;:::i;:::-;12764:74;;12847:93;12936:3;12847:93;:::i;:::-;12965:2;12960:3;12956:12;12949:19;;12608:366;;;:::o;12980:419::-;13146:4;13184:2;13173:9;13169:18;13161:26;;13233:9;13227:4;13223:20;13219:1;13208:9;13204:17;13197:47;13261:131;13387:4;13261:131;:::i;:::-;13253:139;;12980:419;;;:::o;13405:180::-;13453:77;13450:1;13443:88;13550:4;13547:1;13540:15;13574:4;13571:1;13564:15;13591:320;13635:6;13672:1;13666:4;13662:12;13652:22;;13719:1;13713:4;13709:12;13740:18;13730:81;;13796:4;13788:6;13784:17;13774:27;;13730:81;13858:2;13850:6;13847:14;13827:18;13824:38;13821:84;;13877:18;;:::i;:::-;13821:84;13642:269;13591:320;;;:::o;13917:147::-;14018:11;14055:3;14040:18;;13917:147;;;;:::o;14070:114::-;;:::o;14190:398::-;14349:3;14370:83;14451:1;14446:3;14370:83;:::i;:::-;14363:90;;14462:93;14551:3;14462:93;:::i;:::-;14580:1;14575:3;14571:11;14564:18;;14190:398;;;:::o;14594:379::-;14778:3;14800:147;14943:3;14800:147;:::i;:::-;14793:154;;14964:3;14957:10;;14594:379;;;:::o;14979:164::-;15119:16;15115:1;15107:6;15103:14;15096:40;14979:164;:::o;15149:366::-;15291:3;15312:67;15376:2;15371:3;15312:67;:::i;:::-;15305:74;;15388:93;15477:3;15388:93;:::i;:::-;15506:2;15501:3;15497:12;15490:19;;15149:366;;;:::o;15521:419::-;15687:4;15725:2;15714:9;15710:18;15702:26;;15774:9;15768:4;15764:20;15760:1;15749:9;15745:17;15738:47;15802:131;15928:4;15802:131;:::i;:::-;15794:139;;15521:419;;;:::o;15946:141::-;15995:4;16018:3;16010:11;;16041:3;16038:1;16031:14;16075:4;16072:1;16062:18;16054:26;;15946:141;;;:::o;16093:93::-;16130:6;16177:2;16172;16165:5;16161:14;16157:23;16147:33;;16093:93;;;:::o;16192:107::-;16236:8;16286:5;16280:4;16276:16;16255:37;;16192:107;;;;:::o;16305:393::-;16374:6;16424:1;16412:10;16408:18;16447:97;16477:66;16466:9;16447:97;:::i;:::-;16565:39;16595:8;16584:9;16565:39;:::i;:::-;16553:51;;16637:4;16633:9;16626:5;16622:21;16613:30;;16686:4;16676:8;16672:19;16665:5;16662:30;16652:40;;16381:317;;16305:393;;;;;:::o;16704:60::-;16732:3;16753:5;16746:12;;16704:60;;;:::o;16770:142::-;16820:9;16853:53;16871:34;16880:24;16898:5;16880:24;:::i;:::-;16871:34;:::i;:::-;16853:53;:::i;:::-;16840:66;;16770:142;;;:::o;16918:75::-;16961:3;16982:5;16975:12;;16918:75;;;:::o;16999:269::-;17109:39;17140:7;17109:39;:::i;:::-;17170:91;17219:41;17243:16;17219:41;:::i;:::-;17211:6;17204:4;17198:11;17170:91;:::i;:::-;17164:4;17157:105;17075:193;16999:269;;;:::o;17274:73::-;17319:3;17274:73;:::o;17353:189::-;17430:32;;:::i;:::-;17471:65;17529:6;17521;17515:4;17471:65;:::i;:::-;17406:136;17353:189;;:::o;17548:186::-;17608:120;17625:3;17618:5;17615:14;17608:120;;;17679:39;17716:1;17709:5;17679:39;:::i;:::-;17652:1;17645:5;17641:13;17632:22;;17608:120;;;17548:186;;:::o;17740:543::-;17841:2;17836:3;17833:11;17830:446;;;17875:38;17907:5;17875:38;:::i;:::-;17959:29;17977:10;17959:29;:::i;:::-;17949:8;17945:44;18142:2;18130:10;18127:18;18124:49;;;18163:8;18148:23;;18124:49;18186:80;18242:22;18260:3;18242:22;:::i;:::-;18232:8;18228:37;18215:11;18186:80;:::i;:::-;17845:431;;17830:446;17740:543;;;:::o;18289:117::-;18343:8;18393:5;18387:4;18383:16;18362:37;;18289:117;;;;:::o;18412:169::-;18456:6;18489:51;18537:1;18533:6;18525:5;18522:1;18518:13;18489:51;:::i;:::-;18485:56;18570:4;18564;18560:15;18550:25;;18463:118;18412:169;;;;:::o;18586:295::-;18662:4;18808:29;18833:3;18827:4;18808:29;:::i;:::-;18800:37;;18870:3;18867:1;18863:11;18857:4;18854:21;18846:29;;18586:295;;;;:::o;18886:1395::-;19003:37;19036:3;19003:37;:::i;:::-;19105:18;19097:6;19094:30;19091:56;;;19127:18;;:::i;:::-;19091:56;19171:38;19203:4;19197:11;19171:38;:::i;:::-;19256:67;19316:6;19308;19302:4;19256:67;:::i;:::-;19350:1;19374:4;19361:17;;19406:2;19398:6;19395:14;19423:1;19418:618;;;;20080:1;20097:6;20094:77;;;20146:9;20141:3;20137:19;20131:26;20122:35;;20094:77;20197:67;20257:6;20250:5;20197:67;:::i;:::-;20191:4;20184:81;20053:222;19388:887;;19418:618;19470:4;19466:9;19458:6;19454:22;19504:37;19536:4;19504:37;:::i;:::-;19563:1;19577:208;19591:7;19588:1;19585:14;19577:208;;;19670:9;19665:3;19661:19;19655:26;19647:6;19640:42;19721:1;19713:6;19709:14;19699:24;;19768:2;19757:9;19753:18;19740:31;;19614:4;19611:1;19607:12;19602:17;;19577:208;;;19813:6;19804:7;19801:19;19798:179;;;19871:9;19866:3;19862:19;19856:26;19914:48;19956:4;19948:6;19944:17;19933:9;19914:48;:::i;:::-;19906:6;19899:64;19821:156;19798:179;20023:1;20019;20011:6;20007:14;20003:22;19997:4;19990:36;19425:611;;;19388:887;;18978:1303;;;18886:1395;;:::o;20287:156::-;20427:8;20423:1;20415:6;20411:14;20404:32;20287:156;:::o;20449:365::-;20591:3;20612:66;20676:1;20671:3;20612:66;:::i;:::-;20605:73;;20687:93;20776:3;20687:93;:::i;:::-;20805:2;20800:3;20796:12;20789:19;;20449:365;;;:::o;20820:419::-;20986:4;21024:2;21013:9;21009:18;21001:26;;21073:9;21067:4;21063:20;21059:1;21048:9;21044:17;21037:47;21101:131;21227:4;21101:131;:::i;:::-;21093:139;;20820:419;;;:::o;21245:180::-;21293:77;21290:1;21283:88;21390:4;21387:1;21380:15;21414:4;21411:1;21404:15;21431:191;21471:3;21490:20;21508:1;21490:20;:::i;:::-;21485:25;;21524:20;21542:1;21524:20;:::i;:::-;21519:25;;21567:1;21564;21560:9;21553:16;;21588:3;21585:1;21582:10;21579:36;;;21595:18;;:::i;:::-;21579:36;21431:191;;;;:::o;21628:168::-;21768:20;21764:1;21756:6;21752:14;21745:44;21628:168;:::o;21802:366::-;21944:3;21965:67;22029:2;22024:3;21965:67;:::i;:::-;21958:74;;22041:93;22130:3;22041:93;:::i;:::-;22159:2;22154:3;22150:12;22143:19;;21802:366;;;:::o;22174:419::-;22340:4;22378:2;22367:9;22363:18;22355:26;;22427:9;22421:4;22417:20;22413:1;22402:9;22398:17;22391:47;22455:131;22581:4;22455:131;:::i;:::-;22447:139;;22174:419;;;:::o;22599:160::-;22739:12;22735:1;22727:6;22723:14;22716:36;22599:160;:::o;22765:366::-;22907:3;22928:67;22992:2;22987:3;22928:67;:::i;:::-;22921:74;;23004:93;23093:3;23004:93;:::i;:::-;23122:2;23117:3;23113:12;23106:19;;22765:366;;;:::o;23137:419::-;23303:4;23341:2;23330:9;23326:18;23318:26;;23390:9;23384:4;23380:20;23376:1;23365:9;23361:17;23354:47;23418:131;23544:4;23418:131;:::i;:::-;23410:139;;23137:419;;;:::o;23562:162::-;23702:14;23698:1;23690:6;23686:14;23679:38;23562:162;:::o;23730:366::-;23872:3;23893:67;23957:2;23952:3;23893:67;:::i;:::-;23886:74;;23969:93;24058:3;23969:93;:::i;:::-;24087:2;24082:3;24078:12;24071:19;;23730:366;;;:::o;24102:419::-;24268:4;24306:2;24295:9;24291:18;24283:26;;24355:9;24349:4;24345:20;24341:1;24330:9;24326:17;24319:47;24383:131;24509:4;24383:131;:::i;:::-;24375:139;;24102:419;;;:::o;24527:172::-;24667:24;24663:1;24655:6;24651:14;24644:48;24527:172;:::o;24705:366::-;24847:3;24868:67;24932:2;24927:3;24868:67;:::i;:::-;24861:74;;24944:93;25033:3;24944:93;:::i;:::-;25062:2;25057:3;25053:12;25046:19;;24705:366;;;:::o;25077:419::-;25243:4;25281:2;25270:9;25266:18;25258:26;;25330:9;25324:4;25320:20;25316:1;25305:9;25301:17;25294:47;25358:131;25484:4;25358:131;:::i;:::-;25350:139;;25077:419;;;:::o;25502:410::-;25542:7;25565:20;25583:1;25565:20;:::i;:::-;25560:25;;25599:20;25617:1;25599:20;:::i;:::-;25594:25;;25654:1;25651;25647:9;25676:30;25694:11;25676:30;:::i;:::-;25665:41;;25855:1;25846:7;25842:15;25839:1;25836:22;25816:1;25809:9;25789:83;25766:139;;25885:18;;:::i;:::-;25766:139;25550:362;25502:410;;;;:::o;25918:172::-;26058:24;26054:1;26046:6;26042:14;26035:48;25918:172;:::o;26096:366::-;26238:3;26259:67;26323:2;26318:3;26259:67;:::i;:::-;26252:74;;26335:93;26424:3;26335:93;:::i;:::-;26453:2;26448:3;26444:12;26437:19;;26096:366;;;:::o;26468:419::-;26634:4;26672:2;26661:9;26657:18;26649:26;;26721:9;26715:4;26711:20;26707:1;26696:9;26692:17;26685:47;26749:131;26875:4;26749:131;:::i;:::-;26741:139;;26468:419;;;:::o;26893:171::-;27033:23;27029:1;27021:6;27017:14;27010:47;26893:171;:::o;27070:366::-;27212:3;27233:67;27297:2;27292:3;27233:67;:::i;:::-;27226:74;;27309:93;27398:3;27309:93;:::i;:::-;27427:2;27422:3;27418:12;27411:19;;27070:366;;;:::o;27442:419::-;27608:4;27646:2;27635:9;27631:18;27623:26;;27695:9;27689:4;27685:20;27681:1;27670:9;27666:17;27659:47;27723:131;27849:4;27723:131;:::i;:::-;27715:139;;27442:419;;;:::o;27867:148::-;27969:11;28006:3;27991:18;;27867:148;;;;:::o;28045:874::-;28148:3;28185:5;28179:12;28214:36;28240:9;28214:36;:::i;:::-;28266:89;28348:6;28343:3;28266:89;:::i;:::-;28259:96;;28386:1;28375:9;28371:17;28402:1;28397:166;;;;28577:1;28572:341;;;;28364:549;;28397:166;28481:4;28477:9;28466;28462:25;28457:3;28450:38;28543:6;28536:14;28529:22;28521:6;28517:35;28512:3;28508:45;28501:52;;28397:166;;28572:341;28639:38;28671:5;28639:38;:::i;:::-;28699:1;28713:154;28727:6;28724:1;28721:13;28713:154;;;28801:7;28795:14;28791:1;28786:3;28782:11;28775:35;28851:1;28842:7;28838:15;28827:26;;28749:4;28746:1;28742:12;28737:17;;28713:154;;;28896:6;28891:3;28887:16;28880:23;;28579:334;;28364:549;;28152:767;;28045:874;;;;:::o;28925:390::-;29031:3;29059:39;29092:5;29059:39;:::i;:::-;29114:89;29196:6;29191:3;29114:89;:::i;:::-;29107:96;;29212:65;29270:6;29265:3;29258:4;29251:5;29247:16;29212:65;:::i;:::-;29302:6;29297:3;29293:16;29286:23;;29035:280;28925:390;;;;:::o;29321:589::-;29546:3;29568:92;29656:3;29647:6;29568:92;:::i;:::-;29561:99;;29677:95;29768:3;29759:6;29677:95;:::i;:::-;29670:102;;29789:95;29880:3;29871:6;29789:95;:::i;:::-;29782:102;;29901:3;29894:10;;29321:589;;;;;;:::o;29916:125::-;29982:7;30011:24;30029:5;30011:24;:::i;:::-;30000:35;;29916:125;;;:::o;30047:180::-;30149:53;30196:5;30149:53;:::i;:::-;30142:5;30139:64;30129:92;;30217:1;30214;30207:12;30129:92;30047:180;:::o;30233:201::-;30319:5;30350:6;30344:13;30335:22;;30366:62;30422:5;30366:62;:::i;:::-;30233:201;;;;:::o;30440:409::-;30539:6;30588:2;30576:9;30567:7;30563:23;30559:32;30556:119;;;30594:79;;:::i;:::-;30556:119;30714:1;30739:93;30824:7;30815:6;30804:9;30800:22;30739:93;:::i;:::-;30729:103;;30685:157;30440:409;;;;:::o;30855:225::-;30995:34;30991:1;30983:6;30979:14;30972:58;31064:8;31059:2;31051:6;31047:15;31040:33;30855:225;:::o;31086:366::-;31228:3;31249:67;31313:2;31308:3;31249:67;:::i;:::-;31242:74;;31325:93;31414:3;31325:93;:::i;:::-;31443:2;31438:3;31434:12;31427:19;;31086:366;;;:::o;31458:419::-;31624:4;31662:2;31651:9;31647:18;31639:26;;31711:9;31705:4;31701:20;31697:1;31686:9;31682:17;31675:47;31739:131;31865:4;31739:131;:::i;:::-;31731:139;;31458:419;;;:::o;31883:98::-;31934:6;31968:5;31962:12;31952:22;;31883:98;;;:::o;31987:168::-;32070:11;32104:6;32099:3;32092:19;32144:4;32139:3;32135:14;32120:29;;31987:168;;;;:::o;32161:373::-;32247:3;32275:38;32307:5;32275:38;:::i;:::-;32329:70;32392:6;32387:3;32329:70;:::i;:::-;32322:77;;32408:65;32466:6;32461:3;32454:4;32447:5;32443:16;32408:65;:::i;:::-;32498:29;32520:6;32498:29;:::i;:::-;32493:3;32489:39;32482:46;;32251:283;32161:373;;;;:::o;32540:640::-;32735:4;32773:3;32762:9;32758:19;32750:27;;32787:71;32855:1;32844:9;32840:17;32831:6;32787:71;:::i;:::-;32868:72;32936:2;32925:9;32921:18;32912:6;32868:72;:::i;:::-;32950;33018:2;33007:9;33003:18;32994:6;32950:72;:::i;:::-;33069:9;33063:4;33059:20;33054:2;33043:9;33039:18;33032:48;33097:76;33168:4;33159:6;33097:76;:::i;:::-;33089:84;;32540:640;;;;;;;:::o;33186:141::-;33242:5;33273:6;33267:13;33258:22;;33289:32;33315:5;33289:32;:::i;:::-;33186:141;;;;:::o;33333:349::-;33402:6;33451:2;33439:9;33430:7;33426:23;33422:32;33419:119;;;33457:79;;:::i;:::-;33419:119;33577:1;33602:63;33657:7;33648:6;33637:9;33633:22;33602:63;:::i;:::-;33592:73;;33548:127;33333:349;;;;:::o;33688:233::-;33727:3;33750:24;33768:5;33750:24;:::i;:::-;33741:33;;33796:66;33789:5;33786:77;33783:103;;33866:18;;:::i;:::-;33783:103;33913:1;33906:5;33902:13;33895:20;;33688:233;;;:::o;33927:180::-;33975:77;33972:1;33965:88;34072:4;34069:1;34062:15;34096:4;34093:1;34086:15;34113:185;34153:1;34170:20;34188:1;34170:20;:::i;:::-;34165:25;;34204:20;34222:1;34204:20;:::i;:::-;34199:25;;34243:1;34233:35;;34248:18;;:::i;:::-;34233:35;34290:1;34287;34283:9;34278:14;;34113:185;;;;:::o;34304:194::-;34344:4;34364:20;34382:1;34364:20;:::i;:::-;34359:25;;34398:20;34416:1;34398:20;:::i;:::-;34393:25;;34442:1;34439;34435:9;34427:17;;34466:1;34460:4;34457:11;34454:37;;;34471:18;;:::i;:::-;34454:37;34304:194;;;;:::o;34504:176::-;34536:1;34553:20;34571:1;34553:20;:::i;:::-;34548:25;;34587:20;34605:1;34587:20;:::i;:::-;34582:25;;34626:1;34616:35;;34631:18;;:::i;:::-;34616:35;34672:1;34669;34665:9;34660:14;;34504:176;;;;:::o;34686:180::-;34734:77;34731:1;34724:88;34831:4;34828:1;34821:15;34855:4;34852:1;34845:15
Swarm Source
ipfs://dbc5e136d44cd8acfb1f458340b39b34442feeb95f1e3c1afd1de087111640c8
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.