ETH Price: $3,441.11 (-1.14%)
Gas: 8 Gwei

Token

NegativeValueCertificates (NVC)
 

Overview

Max Total Supply

256 NVC

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vault.danrosario.eth
Balance
1 NVC
0xc4bafdc0a6b7c1339055cea9dfd433b28815ae78
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NegativeValueCertificates

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 2: NegativeValueCertificates.sol
// SPDX-License-Identifier: MIT

import "./Dependencies.sol";

pragma solidity ^0.8.2;


contract NegativeValueCertificates is ERC721, ERC721Burnable, Ownable {
  using Strings for uint256;

  uint private _tokenIdCounter;

  bool public useURIPointer;

  string public baseUrl;
  string public baseUrlExtension;
  string public baseExternalUrl;
  string public baseImgUrl;
  string public imgExtension;
  string public projectDescription;
  string public metadataExtension;
  string public baseNamePrefix;
  string public baseNameSuffix;
  string public license;
  address public mintingAddress;

  address constant public compromisedAddress = 0x7C23C1b7e544e3e805bA675c811E287fc9d71949;
  int256 constant public parValue = -99377340000000000;


  event ProjectEvent(address indexed poster, string indexed eventType, string content);
  event TokenEvent(address indexed poster, uint256 indexed tokenId, string indexed eventType, string content);

  constructor(address eventualOwner) ERC721('NegativeValueCertificates', 'NVC', compromisedAddress) {
    useURIPointer = false;
    baseNamePrefix = 'Negative Value Certificate #';
    baseNameSuffix = ' of 256';
    baseUrlExtension = '.json';
    baseUrl = 'https://steviep.xyz/negative-value-certificates/tokens/metadata/';
    baseImgUrl = 'https://steviep.xyz/negative-value-certificates/tokens/images/';
    baseExternalUrl = 'https://steviep.xyz/negative-value-certificates?tokenId=';
    imgExtension = '.png';
    projectDescription = "This certificate has a par value of -0.09937741 ETH, which is backed by a one two hundred fifty-sixth share of the 25.4406 ETH loss sustained by Ethereum address: 0x7c23c1b7e544e3e805ba675c811e287fc9d71949 following the public exposure of its private key on October 15, 2021 at 02:44:49 (UTC). The negative par value indicates that owners of this certificate have a reasonable expectation of loss from holding it.";
    license = 'CC BY-NC 4.0';
    _tokenIdCounter = 1;
    mintingAddress = eventualOwner;
    transferOwnership(eventualOwner);
  }

  function totalSupply() public view virtual returns (uint256) {
    return _tokenIdCounter - 1;
  }

  function safeMint(address to) public {
    require(mintingAddress == _msgSender(), 'Caller is not the minting address');
    require(_tokenIdCounter <= 256, 'Can only mint up to 256 tokens.');
    _safeMint(to, _tokenIdCounter);
    _tokenIdCounter++;
  }

  function setMintingAddress(address minter) public onlyOwner {
    mintingAddress = minter;
  }


  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
    require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory tokenString = tokenId.toString();

    if (useURIPointer) {
      return string(abi.encodePacked(baseUrl, tokenString, baseUrlExtension));
    }

    string memory json = Base64.encode(
      bytes(
        string(
          abi.encodePacked(
            '{"name": "', baseNamePrefix, tokenId.toString(), baseNameSuffix,
            '", "description": "', projectDescription, ' | License: ', license,
            '", "image": "', baseImgUrl, tokenString, imgExtension,
            '", "external_url": "', baseExternalUrl, tokenString,
            '"}'
          )
        )
      )
    );
    return string(abi.encodePacked('data:application/json;base64,', json));

  }


  function flipUseURIPointer() public onlyOwner {
    useURIPointer = !useURIPointer;
  }


  function updateBaseUrl(string memory _baseUrl, string memory _baseUrlExtension) public onlyOwner {
    baseUrl = _baseUrl;
    baseUrlExtension = _baseUrlExtension;
  }

  function updateProjectDescription(
    string memory _projectDescription
  ) public onlyOwner {
    projectDescription = _projectDescription;
  }

  function updateMetadataParams(
    string memory _baseNamePrefix,
    string memory _baseNameSuffix,
    string memory _baseImgUrl,
    string memory _imgExtension,
    string memory _baseExternalUrl,
    string memory _license
  ) public onlyOwner {
    baseNamePrefix = _baseNamePrefix;
    baseNameSuffix = _baseNameSuffix;
    baseImgUrl = _baseImgUrl;
    imgExtension = _imgExtension;
    baseExternalUrl = _baseExternalUrl;
    license = _license;
  }

  function emitProjectEvent(string memory _eventType, string memory _content) public onlyOwner {
    emit ProjectEvent(_msgSender(), _eventType, _content);
  }

  function emitTokenEvent(uint256 tokenId, string memory _eventType, string memory _content) public {
    require(
      owner() == _msgSender() || ERC721.ownerOf(tokenId) == _msgSender(),
      'Only project or token owner can emit token event'
    );
    emit TokenEvent(_msgSender(), tokenId, _eventType, _content);
  }

}




File 1 of 2: Dependencies.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}



/**
 * @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;
}



/**
 * @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);
}


/**
 * @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);
}



/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @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;
    }
}


/**
 * @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);
    }
}




/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

/**
 * @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;
    }
}



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    address public routedAddress;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_, address routedAddress_) {
        _name = name_;
        _symbol = symbol_;
        routedAddress = routedAddress_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        emit Transfer(address(0), routedAddress, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(routedAddress, to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}



Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"eventualOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"poster","type":"address"},{"indexed":true,"internalType":"string","name":"eventType","type":"string"},{"indexed":false,"internalType":"string","name":"content","type":"string"}],"name":"ProjectEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"poster","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"string","name":"eventType","type":"string"},{"indexed":false,"internalType":"string","name":"content","type":"string"}],"name":"TokenEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExternalUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseImgUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseNamePrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseNameSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUrlExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"compromisedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_eventType","type":"string"},{"internalType":"string","name":"_content","type":"string"}],"name":"emitProjectEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_eventType","type":"string"},{"internalType":"string","name":"_content","type":"string"}],"name":"emitTokenEvent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipUseURIPointer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imgExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"license","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"parValue","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routedAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"setMintingAddress","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":[{"internalType":"string","name":"_baseUrl","type":"string"},{"internalType":"string","name":"_baseUrlExtension","type":"string"}],"name":"updateBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseNamePrefix","type":"string"},{"internalType":"string","name":"_baseNameSuffix","type":"string"},{"internalType":"string","name":"_baseImgUrl","type":"string"},{"internalType":"string","name":"_imgExtension","type":"string"},{"internalType":"string","name":"_baseExternalUrl","type":"string"},{"internalType":"string","name":"_license","type":"string"}],"name":"updateMetadataParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_projectDescription","type":"string"}],"name":"updateProjectDescription","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useURIPointer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200556d3803806200556d8339818101604052810190620000379190620006ef565b6040518060400160405280601981526020017f4e6567617469766556616c7565436572746966696361746573000000000000008152506040518060400160405280600381526020017f4e56430000000000000000000000000000000000000000000000000000000000815250737c23c1b7e544e3e805ba675c811e287fc9d719498260019080519060200190620000d092919062000628565b508160029080519060200190620000e992919062000628565b50806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200014d620001416200041a60201b60201c565b6200042260201b60201c565b6000600960006101000a81548160ff0219169083151502179055506040518060400160405280601c81526020017f4e656761746976652056616c756520436572746966696361746520230000000081525060119080519060200190620001b592919062000628565b506040518060400160405280600781526020017f206f662032353600000000000000000000000000000000000000000000000000815250601290805190602001906200020392919062000628565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200025192919062000628565b50604051806060016040528060408152602001620054b760409139600a90805190602001906200028392919062000628565b506040518060600160405280603e81526020016200552f603e9139600d9080519060200190620002b592919062000628565b50604051806060016040528060388152602001620054f760389139600c9080519060200190620002e792919062000628565b506040518060400160405280600481526020017f2e706e6700000000000000000000000000000000000000000000000000000000815250600e90805190602001906200033592919062000628565b50604051806101c0016040528061019d81526020016200531a61019d9139600f90805190602001906200036a92919062000628565b506040518060400160405280600c81526020017f43432042592d4e4320342e30000000000000000000000000000000000000000081525060139080519060200190620003b892919062000628565b50600160088190555080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200041381620004e860201b60201c565b50620008e9565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620004f86200041a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200051e620005fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000577576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056e906200078b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620005ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e19062000769565b60405180910390fd5b620005fb816200042260201b60201c565b50565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200063690620007f2565b90600052602060002090601f0160209004810192826200065a5760008555620006a6565b82601f106200067557805160ff1916838001178555620006a6565b82800160010185558215620006a6579182015b82811115620006a557825182559160200191906001019062000688565b5b509050620006b59190620006b9565b5090565b5b80821115620006d4576000816000905550600101620006ba565b5090565b600081519050620006e981620008cf565b92915050565b6000602082840312156200070257600080fd5b60006200071284828501620006d8565b91505092915050565b60006200072a602683620007ad565b9150620007378262000857565b604082019050919050565b600062000751602083620007ad565b91506200075e82620008a6565b602082019050919050565b6000602082019050818103600083015262000784816200071b565b9050919050565b60006020820190508181036000830152620007a68162000742565b9050919050565b600082825260208201905092915050565b6000620007cb82620007d2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200080b57607f821691505b6020821081141562000822576200082162000828565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620008da81620007be565b8114620008e657600080fd5b50565b614a2180620008f96000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c806370a0823111610146578063c977aba1116100c3578063ea7344bd11610087578063ea7344bd1461069e578063ebf72a5f146106bc578063ecf4326b146106da578063f2fde38b146106f6578063f56026af14610712578063fd4307c31461073057610253565b8063c977aba1146105f8578063ca2febbf14610616578063d29fb51414610634578063d4434ab014610652578063e985e9c51461066e57610253565b8063a22cb4651161010a578063a22cb46514610568578063a877a08814610584578063b88d4fde1461058e578063bb90b76c146105aa578063c87b56dd146105c857610253565b806370a08231146104d4578063715018a614610504578063755f047b1461050e5780638da5cb5b1461052c57806395d89b411461054a57610253565b80632cea64bf116101d457806352a6c8c91161019857806352a6c8c914610430578063530d98011461044c5780635bcabf04146104685780636352211e146104865780636b87d24c146104b657610253565b80632cea64bf146103a257806332d434e9146103c057806340d097c3146103dc57806342842e0e146103f857806342966c681461041457610253565b80631a2f75041161021b5780631a2f75041461031057806323a22bcb1461032e57806323b872dd1461034a57806326980da2146103665780632c8ac0a11461038457610253565b806301ffc9a71461025857806306fdde0314610288578063081812fc146102a6578063095ea7b3146102d657806318160ddd146102f2575b600080fd5b610272600480360381019061026d9190613203565b61074e565b60405161027f9190613b71565b60405180910390f35b610290610830565b60405161029d9190613ba7565b60405180910390f35b6102c060048036038101906102bb919061341b565b6108c2565b6040516102cd9190613b0a565b60405180910390f35b6102f060048036038101906102eb91906131c7565b610947565b005b6102fa610a5f565b6040516103079190613e49565b60405180910390f35b610318610a75565b6040516103259190613ba7565b60405180910390f35b61034860048036038101906103439190613255565b610b03565b005b610364600480360381019061035f91906130c1565b610b99565b005b61036e610bf9565b60405161037b9190613ba7565b60405180910390f35b61038c610c87565b6040516103999190613b0a565b60405180910390f35b6103aa610c9f565b6040516103b79190613b8c565b60405180910390f35b6103da60048036038101906103d5919061305c565b610cc3565b005b6103f660048036038101906103f1919061305c565b610d83565b005b610412600480360381019061040d91906130c1565b610e88565b005b61042e6004803603810190610429919061341b565b610ea8565b005b61044a60048036038101906104459190613444565b610f04565b005b61046660048036038101906104619190613302565b611036565b005b610470611144565b60405161047d9190613ba7565b60405180910390f35b6104a0600480360381019061049b919061341b565b6111d2565b6040516104ad9190613b0a565b60405180910390f35b6104be611284565b6040516104cb9190613ba7565b60405180910390f35b6104ee60048036038101906104e9919061305c565b611312565b6040516104fb9190613e49565b60405180910390f35b61050c6113ca565b005b610516611452565b6040516105239190613ba7565b60405180910390f35b6105346114e0565b6040516105419190613b0a565b60405180910390f35b61055261150a565b60405161055f9190613ba7565b60405180910390f35b610582600480360381019061057d919061318b565b61159c565b005b61058c61171d565b005b6105a860048036038101906105a39190613110565b6117c5565b005b6105b2611827565b6040516105bf9190613ba7565b60405180910390f35b6105e260048036038101906105dd919061341b565b6118b5565b6040516105ef9190613ba7565b60405180910390f35b6106006119c6565b60405161060d9190613ba7565b60405180910390f35b61061e611a54565b60405161062b9190613b71565b60405180910390f35b61063c611a67565b6040516106499190613b0a565b60405180910390f35b61066c60048036038101906106679190613296565b611a8b565b005b61068860048036038101906106839190613085565b611b76565b6040516106959190613b71565b60405180910390f35b6106a6611c0a565b6040516106b39190613ba7565b60405180910390f35b6106c4611c98565b6040516106d19190613ba7565b60405180910390f35b6106f460048036038101906106ef9190613296565b611d26565b005b610710600480360381019061070b919061305c565b611dd4565b005b61071a611ecc565b6040516107279190613ba7565b60405180910390f35b610738611f5a565b6040516107459190613b0a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610829575061082882611f80565b5b9050919050565b60606001805461083f90614118565b80601f016020809104026020016040519081016040528092919081815260200182805461086b90614118565b80156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b60006108cd82611fea565b61090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390613d49565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610952826111d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90613dc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e2612056565b73ffffffffffffffffffffffffffffffffffffffff161480610a115750610a1081610a0b612056565b611b76565b5b610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790613cc9565b60405180910390fd5b610a5a838361205e565b505050565b60006001600854610a709190614024565b905090565b60128054610a8290614118565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae90614118565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b505050505081565b610b0b612056565b73ffffffffffffffffffffffffffffffffffffffff16610b296114e0565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613d69565b60405180910390fd5b80600f9080519060200190610b95929190612e80565b5050565b610baa610ba4612056565b82612117565b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090613de9565b60405180910390fd5b610bf48383836121f5565b505050565b600e8054610c0690614118565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3290614118565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b505050505081565b737c23c1b7e544e3e805ba675c811e287fc9d7194981565b7ffffffffffffffffffffffffffffffffffffffffffffffffffe9ef0d5f693a80081565b610ccb612056565b73ffffffffffffffffffffffffffffffffffffffff16610ce96114e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613d69565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d8b612056565b73ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613bc9565b60405180910390fd5b6101006008541115610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613c89565b60405180910390fd5b610e6d81600854612451565b60086000815480929190610e809061417b565b919050555050565b610ea3838383604051806020016040528060008152506117c5565b505050565b610eb9610eb3612056565b82612117565b610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613e29565b60405180910390fd5b610f018161246f565b50565b610f0c612056565b73ffffffffffffffffffffffffffffffffffffffff16610f2a6114e0565b73ffffffffffffffffffffffffffffffffffffffff161480610f865750610f4f612056565b73ffffffffffffffffffffffffffffffffffffffff16610f6e846111d2565b73ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613e09565b60405180910390fd5b81604051610fd391906139d2565b604051809103902083610fe4612056565b73ffffffffffffffffffffffffffffffffffffffff167fad000c5a693465b4555f1044ddd1221ef0bfc49e5621ceb705b952ff97e2caac846040516110299190613ba7565b60405180910390a4505050565b61103e612056565b73ffffffffffffffffffffffffffffffffffffffff1661105c6114e0565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990613d69565b60405180910390fd5b85601190805190602001906110c8929190612e80565b5084601290805190602001906110df929190612e80565b5083600d90805190602001906110f6929190612e80565b5082600e908051906020019061110d929190612e80565b5081600c9080519060200190611124929190612e80565b50806013908051906020019061113b929190612e80565b50505050505050565b600a805461115190614118565b80601f016020809104026020016040519081016040528092919081815260200182805461117d90614118565b80156111ca5780601f1061119f576101008083540402835291602001916111ca565b820191906000526020600020905b8154815290600101906020018083116111ad57829003601f168201915b505050505081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613d09565b60405180910390fd5b80915050919050565b6013805461129190614118565b80601f01602080910402602001604051908101604052809291908181526020018280546112bd90614118565b801561130a5780601f106112df5761010080835404028352916020019161130a565b820191906000526020600020905b8154815290600101906020018083116112ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613ce9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d2612056565b73ffffffffffffffffffffffffffffffffffffffff166113f06114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90613d69565b60405180910390fd5b6114506000612580565b565b600f805461145f90614118565b80601f016020809104026020016040519081016040528092919081815260200182805461148b90614118565b80156114d85780601f106114ad576101008083540402835291602001916114d8565b820191906000526020600020905b8154815290600101906020018083116114bb57829003601f168201915b505050505081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461151990614118565b80601f016020809104026020016040519081016040528092919081815260200182805461154590614118565b80156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b5050505050905090565b6115a4612056565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613c69565b60405180910390fd5b806006600061161f612056565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116cc612056565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117119190613b71565b60405180910390a35050565b611725612056565b73ffffffffffffffffffffffffffffffffffffffff166117436114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613d69565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6117d66117d0612056565b83612117565b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613de9565b60405180910390fd5b61182184848484612646565b50505050565b600b805461183490614118565b80601f016020809104026020016040519081016040528092919081815260200182805461186090614118565b80156118ad5780601f10611882576101008083540402835291602001916118ad565b820191906000526020600020905b81548152906001019060200180831161189057829003601f168201915b505050505081565b60606118c082611fea565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613da9565b60405180910390fd5b600061190a836126a2565b9050600960009054906101000a900460ff161561194f57600a81600b604051602001611938939291906139e9565b6040516020818303038152906040529150506119c1565b600061199a601161195f866126a2565b6012600f6013600d88600e600c8b6040516020016119869a99989796959493929190613a1a565b60405160208183030381529060405261284f565b9050806040516020016119ad9190613ae8565b604051602081830303815290604052925050505b919050565b601180546119d390614118565b80601f01602080910402602001604051908101604052809291908181526020018280546119ff90614118565b8015611a4c5780601f10611a2157610100808354040283529160200191611a4c565b820191906000526020600020905b815481529060010190602001808311611a2f57829003601f168201915b505050505081565b600960009054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a93612056565b73ffffffffffffffffffffffffffffffffffffffff16611ab16114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613d69565b60405180910390fd5b81604051611b1591906139d2565b6040518091039020611b25612056565b73ffffffffffffffffffffffffffffffffffffffff167f3d366eac52dec4372766dc4b15bba20b935b45d33171465a598eedabb5a5dff883604051611b6a9190613ba7565b60405180910390a35050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d8054611c1790614118565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4390614118565b8015611c905780601f10611c6557610100808354040283529160200191611c90565b820191906000526020600020905b815481529060010190602001808311611c7357829003601f168201915b505050505081565b60108054611ca590614118565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd190614118565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b505050505081565b611d2e612056565b73ffffffffffffffffffffffffffffffffffffffff16611d4c6114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9990613d69565b60405180910390fd5b81600a9080519060200190611db8929190612e80565b5080600b9080519060200190611dcf929190612e80565b505050565b611ddc612056565b73ffffffffffffffffffffffffffffffffffffffff16611dfa6114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613d69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790613c09565b60405180910390fd5b611ec981612580565b50565b600c8054611ed990614118565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0590614118565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b505050505081565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d1836111d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061212282611fea565b612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890613ca9565b60405180910390fd5b600061216c836111d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121db57508373ffffffffffffffffffffffffffffffffffffffff166121c3846108c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806121ec57506121eb8185611b76565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612215826111d2565b73ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290613d89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290613c49565b60405180910390fd5b6122e6838383612a0d565b6122f160008261205e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123419190614024565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123989190613f43565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61246b828260405180602001604052806000815250612a12565b5050565b600061247a826111d2565b905061248881600084612a0d565b61249360008361205e565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e39190614024565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126518484846121f5565b61265d84848484612a6d565b61269c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390613be9565b60405180910390fd5b50505050565b606060008214156126ea576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061284a565b600082905060005b6000821461271c5780806127059061417b565b915050600a826127159190613f99565b91506126f2565b60008167ffffffffffffffff81111561275e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127905781602001600182028036833780820191505090505b5090505b60008514612843576001826127a99190614024565b9150600a856127b891906141c4565b60306127c49190613f43565b60f81b818381518110612800577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283c9190613f99565b9450612794565b8093505050505b919050565b606060008251905060008114156128785760405180602001604052806000815250915050612a08565b600060036002836128899190613f43565b6128939190613f99565b600461289f9190613fca565b905060006020826128b09190613f43565b67ffffffffffffffff8111156128ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129215781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016149ac604091399050600181016020830160005b868110156129c55760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505061294c565b5060038606600181146129df57600281146129ef576129fa565b613d3d60f01b60028303526129fa565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b612a1c8383612c04565b612a296000848484612a6d565b612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90613be9565b60405180910390fd5b505050565b6000612a8e8473ffffffffffffffffffffffffffffffffffffffff16612e6d565b15612bf7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ab7612056565b8786866040518563ffffffff1660e01b8152600401612ad99493929190613b25565b602060405180830381600087803b158015612af357600080fd5b505af1925050508015612b2457506040513d601f19601f82011682018060405250810190612b21919061322c565b60015b612ba7573d8060008114612b54576040519150601f19603f3d011682016040523d82523d6000602084013e612b59565b606091505b50600081511415612b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9690613be9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bfc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90613d29565b60405180910390fd5b612c7d81611fea565b15612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613c29565b60405180910390fd5b612cc960008383612a0d565b8060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d959190613f43565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e8c90614118565b90600052602060002090601f016020900481019282612eae5760008555612ef5565b82601f10612ec757805160ff1916838001178555612ef5565b82800160010185558215612ef5579182015b82811115612ef4578251825591602001919060010190612ed9565b5b509050612f029190612f06565b5090565b5b80821115612f1f576000816000905550600101612f07565b5090565b6000612f36612f3184613e89565b613e64565b905082815260208101848484011115612f4e57600080fd5b612f598482856140d6565b509392505050565b6000612f74612f6f84613eba565b613e64565b905082815260208101848484011115612f8c57600080fd5b612f978482856140d6565b509392505050565b600081359050612fae8161494f565b92915050565b600081359050612fc381614966565b92915050565b600081359050612fd88161497d565b92915050565b600081519050612fed8161497d565b92915050565b600082601f83011261300457600080fd5b8135613014848260208601612f23565b91505092915050565b600082601f83011261302e57600080fd5b813561303e848260208601612f61565b91505092915050565b60008135905061305681614994565b92915050565b60006020828403121561306e57600080fd5b600061307c84828501612f9f565b91505092915050565b6000806040838503121561309857600080fd5b60006130a685828601612f9f565b92505060206130b785828601612f9f565b9150509250929050565b6000806000606084860312156130d657600080fd5b60006130e486828701612f9f565b93505060206130f586828701612f9f565b925050604061310686828701613047565b9150509250925092565b6000806000806080858703121561312657600080fd5b600061313487828801612f9f565b945050602061314587828801612f9f565b935050604061315687828801613047565b925050606085013567ffffffffffffffff81111561317357600080fd5b61317f87828801612ff3565b91505092959194509250565b6000806040838503121561319e57600080fd5b60006131ac85828601612f9f565b92505060206131bd85828601612fb4565b9150509250929050565b600080604083850312156131da57600080fd5b60006131e885828601612f9f565b92505060206131f985828601613047565b9150509250929050565b60006020828403121561321557600080fd5b600061322384828501612fc9565b91505092915050565b60006020828403121561323e57600080fd5b600061324c84828501612fde565b91505092915050565b60006020828403121561326757600080fd5b600082013567ffffffffffffffff81111561328157600080fd5b61328d8482850161301d565b91505092915050565b600080604083850312156132a957600080fd5b600083013567ffffffffffffffff8111156132c357600080fd5b6132cf8582860161301d565b925050602083013567ffffffffffffffff8111156132ec57600080fd5b6132f88582860161301d565b9150509250929050565b60008060008060008060c0878903121561331b57600080fd5b600087013567ffffffffffffffff81111561333557600080fd5b61334189828a0161301d565b965050602087013567ffffffffffffffff81111561335e57600080fd5b61336a89828a0161301d565b955050604087013567ffffffffffffffff81111561338757600080fd5b61339389828a0161301d565b945050606087013567ffffffffffffffff8111156133b057600080fd5b6133bc89828a0161301d565b935050608087013567ffffffffffffffff8111156133d957600080fd5b6133e589828a0161301d565b92505060a087013567ffffffffffffffff81111561340257600080fd5b61340e89828a0161301d565b9150509295509295509295565b60006020828403121561342d57600080fd5b600061343b84828501613047565b91505092915050565b60008060006060848603121561345957600080fd5b600061346786828701613047565b935050602084013567ffffffffffffffff81111561348457600080fd5b6134908682870161301d565b925050604084013567ffffffffffffffff8111156134ad57600080fd5b6134b98682870161301d565b9150509250925092565b6134cc81614058565b82525050565b6134db8161406a565b82525050565b60006134ec82613f00565b6134f68185613f16565b93506135068185602086016140e5565b61350f816142b1565b840191505092915050565b613523816140a2565b82525050565b600061353482613f0b565b61353e8185613f27565b935061354e8185602086016140e5565b613557816142b1565b840191505092915050565b600061356d82613f0b565b6135778185613f38565b93506135878185602086016140e5565b80840191505092915050565b600081546135a081614118565b6135aa8186613f38565b945060018216600081146135c557600181146135d657613609565b60ff19831686528186019350613609565b6135df85613eeb565b60005b83811015613601578154818901526001820191506020810190506135e2565b838801955050505b50505092915050565b600061361f602183613f27565b915061362a826142c2565b604082019050919050565b6000613642601383613f38565b915061364d82614311565b601382019050919050565b6000613665603283613f27565b91506136708261433a565b604082019050919050565b6000613688602683613f27565b915061369382614389565b604082019050919050565b60006136ab601c83613f27565b91506136b6826143d8565b602082019050919050565b60006136ce602483613f27565b91506136d982614401565b604082019050919050565b60006136f1601983613f27565b91506136fc82614450565b602082019050919050565b6000613714601f83613f27565b915061371f82614479565b602082019050919050565b6000613737602c83613f27565b9150613742826144a2565b604082019050919050565b600061375a603883613f27565b9150613765826144f1565b604082019050919050565b600061377d602a83613f27565b915061378882614540565b604082019050919050565b60006137a0602983613f27565b91506137ab8261458f565b604082019050919050565b60006137c3600283613f38565b91506137ce826145de565b600282019050919050565b60006137e6602083613f27565b91506137f182614607565b602082019050919050565b6000613809600d83613f38565b915061381482614630565b600d82019050919050565b600061382c600c83613f38565b915061383782614659565b600c82019050919050565b600061384f602c83613f27565b915061385a82614682565b604082019050919050565b6000613872602083613f27565b915061387d826146d1565b602082019050919050565b6000613895602983613f27565b91506138a0826146fa565b604082019050919050565b60006138b8601483613f38565b91506138c382614749565b601482019050919050565b60006138db602f83613f27565b91506138e682614772565b604082019050919050565b60006138fe600a83613f38565b9150613909826147c1565b600a82019050919050565b6000613921602183613f27565b915061392c826147ea565b604082019050919050565b6000613944601d83613f38565b915061394f82614839565b601d82019050919050565b6000613967603183613f27565b915061397282614862565b604082019050919050565b600061398a603083613f27565b9150613995826148b1565b604082019050919050565b60006139ad603083613f27565b91506139b882614900565b604082019050919050565b6139cc816140cc565b82525050565b60006139de8284613562565b915081905092915050565b60006139f58286613593565b9150613a018285613562565b9150613a0d8284613593565b9150819050949350505050565b6000613a25826138f1565b9150613a31828d613593565b9150613a3d828c613562565b9150613a49828b613593565b9150613a5482613635565b9150613a60828a613593565b9150613a6b8261381f565b9150613a778289613593565b9150613a82826137fc565b9150613a8e8288613593565b9150613a9a8287613562565b9150613aa68286613593565b9150613ab1826138ab565b9150613abd8285613593565b9150613ac98284613562565b9150613ad4826137b6565b91508190509b9a5050505050505050505050565b6000613af382613937565b9150613aff8284613562565b915081905092915050565b6000602082019050613b1f60008301846134c3565b92915050565b6000608082019050613b3a60008301876134c3565b613b4760208301866134c3565b613b5460408301856139c3565b8181036060830152613b6681846134e1565b905095945050505050565b6000602082019050613b8660008301846134d2565b92915050565b6000602082019050613ba1600083018461351a565b92915050565b60006020820190508181036000830152613bc18184613529565b905092915050565b60006020820190508181036000830152613be281613612565b9050919050565b60006020820190508181036000830152613c0281613658565b9050919050565b60006020820190508181036000830152613c228161367b565b9050919050565b60006020820190508181036000830152613c428161369e565b9050919050565b60006020820190508181036000830152613c62816136c1565b9050919050565b60006020820190508181036000830152613c82816136e4565b9050919050565b60006020820190508181036000830152613ca281613707565b9050919050565b60006020820190508181036000830152613cc28161372a565b9050919050565b60006020820190508181036000830152613ce28161374d565b9050919050565b60006020820190508181036000830152613d0281613770565b9050919050565b60006020820190508181036000830152613d2281613793565b9050919050565b60006020820190508181036000830152613d42816137d9565b9050919050565b60006020820190508181036000830152613d6281613842565b9050919050565b60006020820190508181036000830152613d8281613865565b9050919050565b60006020820190508181036000830152613da281613888565b9050919050565b60006020820190508181036000830152613dc2816138ce565b9050919050565b60006020820190508181036000830152613de281613914565b9050919050565b60006020820190508181036000830152613e028161395a565b9050919050565b60006020820190508181036000830152613e228161397d565b9050919050565b60006020820190508181036000830152613e42816139a0565b9050919050565b6000602082019050613e5e60008301846139c3565b92915050565b6000613e6e613e7f565b9050613e7a828261414a565b919050565b6000604051905090565b600067ffffffffffffffff821115613ea457613ea3614282565b5b613ead826142b1565b9050602081019050919050565b600067ffffffffffffffff821115613ed557613ed4614282565b5b613ede826142b1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f4e826140cc565b9150613f59836140cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8e57613f8d6141f5565b5b828201905092915050565b6000613fa4826140cc565b9150613faf836140cc565b925082613fbf57613fbe614224565b5b828204905092915050565b6000613fd5826140cc565b9150613fe0836140cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614019576140186141f5565b5b828202905092915050565b600061402f826140cc565b915061403a836140cc565b92508282101561404d5761404c6141f5565b5b828203905092915050565b6000614063826140ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141035780820151818401526020810190506140e8565b83811115614112576000848401525b50505050565b6000600282049050600182168061413057607f821691505b6020821081141561414457614143614253565b5b50919050565b614153826142b1565b810181811067ffffffffffffffff8211171561417257614171614282565b5b80604052505050565b6000614186826140cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b9576141b86141f5565b5b600182019050919050565b60006141cf826140cc565b91506141da836140cc565b9250826141ea576141e9614224565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616c6c6572206973206e6f7420746865206d696e74696e672061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206f6e6c79206d696e7420757020746f2032353620746f6b656e732e00600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b7f207c204c6963656e73653a200000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f222c202265787465726e616c5f75726c223a2022000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f6e6c792070726f6a656374206f7220746f6b656e206f776e65722063616e2060008201527f656d697420746f6b656e206576656e7400000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61495881614058565b811461496357600080fd5b50565b61496f8161406a565b811461497a57600080fd5b50565b61498681614076565b811461499157600080fd5b50565b61499d816140cc565b81146149a857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122063582e92c947da28ccb9a54b02b3a64fa07169406bc0525bdc59fb23b2372a5a64736f6c6343000802003354686973206365727469666963617465206861732061207061722076616c7565206f66202d302e3039393337373431204554482c207768696368206973206261636b65642062792061206f6e652074776f2068756e647265642066696674792d7369787468207368617265206f66207468652032352e3434303620455448206c6f7373207375737461696e656420627920457468657265756d20616464726573733a2030783763323363316237653534346533653830356261363735633831316532383766633964373139343920666f6c6c6f77696e6720746865207075626c6963206578706f73757265206f66206974732070726976617465206b6579206f6e204f63746f6265722031352c20323032312061742030323a34343a34392028555443292e20546865206e65676174697665207061722076616c756520696e646963617465732074686174206f776e657273206f6620746869732063657274696669636174652068617665206120726561736f6e61626c65206578706563746174696f6e206f66206c6f73732066726f6d20686f6c64696e672069742e68747470733a2f2f737465766965702e78797a2f6e656761746976652d76616c75652d6365727469666963617465732f746f6b656e732f6d657461646174612f68747470733a2f2f737465766965702e78797a2f6e656761746976652d76616c75652d6365727469666963617465733f746f6b656e49643d68747470733a2f2f737465766965702e78797a2f6e656761746976652d76616c75652d6365727469666963617465732f746f6b656e732f696d616765732f00000000000000000000000047144372eb383466d18fc91db9cd0396aa6c87a4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102535760003560e01c806370a0823111610146578063c977aba1116100c3578063ea7344bd11610087578063ea7344bd1461069e578063ebf72a5f146106bc578063ecf4326b146106da578063f2fde38b146106f6578063f56026af14610712578063fd4307c31461073057610253565b8063c977aba1146105f8578063ca2febbf14610616578063d29fb51414610634578063d4434ab014610652578063e985e9c51461066e57610253565b8063a22cb4651161010a578063a22cb46514610568578063a877a08814610584578063b88d4fde1461058e578063bb90b76c146105aa578063c87b56dd146105c857610253565b806370a08231146104d4578063715018a614610504578063755f047b1461050e5780638da5cb5b1461052c57806395d89b411461054a57610253565b80632cea64bf116101d457806352a6c8c91161019857806352a6c8c914610430578063530d98011461044c5780635bcabf04146104685780636352211e146104865780636b87d24c146104b657610253565b80632cea64bf146103a257806332d434e9146103c057806340d097c3146103dc57806342842e0e146103f857806342966c681461041457610253565b80631a2f75041161021b5780631a2f75041461031057806323a22bcb1461032e57806323b872dd1461034a57806326980da2146103665780632c8ac0a11461038457610253565b806301ffc9a71461025857806306fdde0314610288578063081812fc146102a6578063095ea7b3146102d657806318160ddd146102f2575b600080fd5b610272600480360381019061026d9190613203565b61074e565b60405161027f9190613b71565b60405180910390f35b610290610830565b60405161029d9190613ba7565b60405180910390f35b6102c060048036038101906102bb919061341b565b6108c2565b6040516102cd9190613b0a565b60405180910390f35b6102f060048036038101906102eb91906131c7565b610947565b005b6102fa610a5f565b6040516103079190613e49565b60405180910390f35b610318610a75565b6040516103259190613ba7565b60405180910390f35b61034860048036038101906103439190613255565b610b03565b005b610364600480360381019061035f91906130c1565b610b99565b005b61036e610bf9565b60405161037b9190613ba7565b60405180910390f35b61038c610c87565b6040516103999190613b0a565b60405180910390f35b6103aa610c9f565b6040516103b79190613b8c565b60405180910390f35b6103da60048036038101906103d5919061305c565b610cc3565b005b6103f660048036038101906103f1919061305c565b610d83565b005b610412600480360381019061040d91906130c1565b610e88565b005b61042e6004803603810190610429919061341b565b610ea8565b005b61044a60048036038101906104459190613444565b610f04565b005b61046660048036038101906104619190613302565b611036565b005b610470611144565b60405161047d9190613ba7565b60405180910390f35b6104a0600480360381019061049b919061341b565b6111d2565b6040516104ad9190613b0a565b60405180910390f35b6104be611284565b6040516104cb9190613ba7565b60405180910390f35b6104ee60048036038101906104e9919061305c565b611312565b6040516104fb9190613e49565b60405180910390f35b61050c6113ca565b005b610516611452565b6040516105239190613ba7565b60405180910390f35b6105346114e0565b6040516105419190613b0a565b60405180910390f35b61055261150a565b60405161055f9190613ba7565b60405180910390f35b610582600480360381019061057d919061318b565b61159c565b005b61058c61171d565b005b6105a860048036038101906105a39190613110565b6117c5565b005b6105b2611827565b6040516105bf9190613ba7565b60405180910390f35b6105e260048036038101906105dd919061341b565b6118b5565b6040516105ef9190613ba7565b60405180910390f35b6106006119c6565b60405161060d9190613ba7565b60405180910390f35b61061e611a54565b60405161062b9190613b71565b60405180910390f35b61063c611a67565b6040516106499190613b0a565b60405180910390f35b61066c60048036038101906106679190613296565b611a8b565b005b61068860048036038101906106839190613085565b611b76565b6040516106959190613b71565b60405180910390f35b6106a6611c0a565b6040516106b39190613ba7565b60405180910390f35b6106c4611c98565b6040516106d19190613ba7565b60405180910390f35b6106f460048036038101906106ef9190613296565b611d26565b005b610710600480360381019061070b919061305c565b611dd4565b005b61071a611ecc565b6040516107279190613ba7565b60405180910390f35b610738611f5a565b6040516107459190613b0a565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061081957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610829575061082882611f80565b5b9050919050565b60606001805461083f90614118565b80601f016020809104026020016040519081016040528092919081815260200182805461086b90614118565b80156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b60006108cd82611fea565b61090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390613d49565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610952826111d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90613dc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109e2612056565b73ffffffffffffffffffffffffffffffffffffffff161480610a115750610a1081610a0b612056565b611b76565b5b610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4790613cc9565b60405180910390fd5b610a5a838361205e565b505050565b60006001600854610a709190614024565b905090565b60128054610a8290614118565b80601f0160208091040260200160405190810160405280929190818152602001828054610aae90614118565b8015610afb5780601f10610ad057610100808354040283529160200191610afb565b820191906000526020600020905b815481529060010190602001808311610ade57829003601f168201915b505050505081565b610b0b612056565b73ffffffffffffffffffffffffffffffffffffffff16610b296114e0565b73ffffffffffffffffffffffffffffffffffffffff1614610b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7690613d69565b60405180910390fd5b80600f9080519060200190610b95929190612e80565b5050565b610baa610ba4612056565b82612117565b610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090613de9565b60405180910390fd5b610bf48383836121f5565b505050565b600e8054610c0690614118565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3290614118565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b505050505081565b737c23c1b7e544e3e805ba675c811e287fc9d7194981565b7ffffffffffffffffffffffffffffffffffffffffffffffffffe9ef0d5f693a80081565b610ccb612056565b73ffffffffffffffffffffffffffffffffffffffff16610ce96114e0565b73ffffffffffffffffffffffffffffffffffffffff1614610d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3690613d69565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610d8b612056565b73ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190613bc9565b60405180910390fd5b6101006008541115610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5890613c89565b60405180910390fd5b610e6d81600854612451565b60086000815480929190610e809061417b565b919050555050565b610ea3838383604051806020016040528060008152506117c5565b505050565b610eb9610eb3612056565b82612117565b610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613e29565b60405180910390fd5b610f018161246f565b50565b610f0c612056565b73ffffffffffffffffffffffffffffffffffffffff16610f2a6114e0565b73ffffffffffffffffffffffffffffffffffffffff161480610f865750610f4f612056565b73ffffffffffffffffffffffffffffffffffffffff16610f6e846111d2565b73ffffffffffffffffffffffffffffffffffffffff16145b610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc90613e09565b60405180910390fd5b81604051610fd391906139d2565b604051809103902083610fe4612056565b73ffffffffffffffffffffffffffffffffffffffff167fad000c5a693465b4555f1044ddd1221ef0bfc49e5621ceb705b952ff97e2caac846040516110299190613ba7565b60405180910390a4505050565b61103e612056565b73ffffffffffffffffffffffffffffffffffffffff1661105c6114e0565b73ffffffffffffffffffffffffffffffffffffffff16146110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a990613d69565b60405180910390fd5b85601190805190602001906110c8929190612e80565b5084601290805190602001906110df929190612e80565b5083600d90805190602001906110f6929190612e80565b5082600e908051906020019061110d929190612e80565b5081600c9080519060200190611124929190612e80565b50806013908051906020019061113b929190612e80565b50505050505050565b600a805461115190614118565b80601f016020809104026020016040519081016040528092919081815260200182805461117d90614118565b80156111ca5780601f1061119f576101008083540402835291602001916111ca565b820191906000526020600020905b8154815290600101906020018083116111ad57829003601f168201915b505050505081565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290613d09565b60405180910390fd5b80915050919050565b6013805461129190614118565b80601f01602080910402602001604051908101604052809291908181526020018280546112bd90614118565b801561130a5780601f106112df5761010080835404028352916020019161130a565b820191906000526020600020905b8154815290600101906020018083116112ed57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611383576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137a90613ce9565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113d2612056565b73ffffffffffffffffffffffffffffffffffffffff166113f06114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611446576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143d90613d69565b60405180910390fd5b6114506000612580565b565b600f805461145f90614118565b80601f016020809104026020016040519081016040528092919081815260200182805461148b90614118565b80156114d85780601f106114ad576101008083540402835291602001916114d8565b820191906000526020600020905b8154815290600101906020018083116114bb57829003601f168201915b505050505081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461151990614118565b80601f016020809104026020016040519081016040528092919081815260200182805461154590614118565b80156115925780601f1061156757610100808354040283529160200191611592565b820191906000526020600020905b81548152906001019060200180831161157557829003601f168201915b5050505050905090565b6115a4612056565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990613c69565b60405180910390fd5b806006600061161f612056565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116cc612056565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117119190613b71565b60405180910390a35050565b611725612056565b73ffffffffffffffffffffffffffffffffffffffff166117436114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611799576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179090613d69565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b6117d66117d0612056565b83612117565b611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613de9565b60405180910390fd5b61182184848484612646565b50505050565b600b805461183490614118565b80601f016020809104026020016040519081016040528092919081815260200182805461186090614118565b80156118ad5780601f10611882576101008083540402835291602001916118ad565b820191906000526020600020905b81548152906001019060200180831161189057829003601f168201915b505050505081565b60606118c082611fea565b6118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690613da9565b60405180910390fd5b600061190a836126a2565b9050600960009054906101000a900460ff161561194f57600a81600b604051602001611938939291906139e9565b6040516020818303038152906040529150506119c1565b600061199a601161195f866126a2565b6012600f6013600d88600e600c8b6040516020016119869a99989796959493929190613a1a565b60405160208183030381529060405261284f565b9050806040516020016119ad9190613ae8565b604051602081830303815290604052925050505b919050565b601180546119d390614118565b80601f01602080910402602001604051908101604052809291908181526020018280546119ff90614118565b8015611a4c5780601f10611a2157610100808354040283529160200191611a4c565b820191906000526020600020905b815481529060010190602001808311611a2f57829003601f168201915b505050505081565b600960009054906101000a900460ff1681565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a93612056565b73ffffffffffffffffffffffffffffffffffffffff16611ab16114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afe90613d69565b60405180910390fd5b81604051611b1591906139d2565b6040518091039020611b25612056565b73ffffffffffffffffffffffffffffffffffffffff167f3d366eac52dec4372766dc4b15bba20b935b45d33171465a598eedabb5a5dff883604051611b6a9190613ba7565b60405180910390a35050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d8054611c1790614118565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4390614118565b8015611c905780601f10611c6557610100808354040283529160200191611c90565b820191906000526020600020905b815481529060010190602001808311611c7357829003601f168201915b505050505081565b60108054611ca590614118565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd190614118565b8015611d1e5780601f10611cf357610100808354040283529160200191611d1e565b820191906000526020600020905b815481529060010190602001808311611d0157829003601f168201915b505050505081565b611d2e612056565b73ffffffffffffffffffffffffffffffffffffffff16611d4c6114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611da2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9990613d69565b60405180910390fd5b81600a9080519060200190611db8929190612e80565b5080600b9080519060200190611dcf929190612e80565b505050565b611ddc612056565b73ffffffffffffffffffffffffffffffffffffffff16611dfa6114e0565b73ffffffffffffffffffffffffffffffffffffffff1614611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613d69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790613c09565b60405180910390fd5b611ec981612580565b50565b600c8054611ed990614118565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0590614118565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b505050505081565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166120d1836111d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061212282611fea565b612161576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215890613ca9565b60405180910390fd5b600061216c836111d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806121db57508373ffffffffffffffffffffffffffffffffffffffff166121c3846108c2565b73ffffffffffffffffffffffffffffffffffffffff16145b806121ec57506121eb8185611b76565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612215826111d2565b73ffffffffffffffffffffffffffffffffffffffff161461226b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226290613d89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290613c49565b60405180910390fd5b6122e6838383612a0d565b6122f160008261205e565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123419190614024565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123989190613f43565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61246b828260405180602001604052806000815250612a12565b5050565b600061247a826111d2565b905061248881600084612a0d565b61249360008361205e565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e39190614024565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126518484846121f5565b61265d84848484612a6d565b61269c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269390613be9565b60405180910390fd5b50505050565b606060008214156126ea576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061284a565b600082905060005b6000821461271c5780806127059061417b565b915050600a826127159190613f99565b91506126f2565b60008167ffffffffffffffff81111561275e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127905781602001600182028036833780820191505090505b5090505b60008514612843576001826127a99190614024565b9150600a856127b891906141c4565b60306127c49190613f43565b60f81b818381518110612800577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561283c9190613f99565b9450612794565b8093505050505b919050565b606060008251905060008114156128785760405180602001604052806000815250915050612a08565b600060036002836128899190613f43565b6128939190613f99565b600461289f9190613fca565b905060006020826128b09190613f43565b67ffffffffffffffff8111156128ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156129215781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016149ac604091399050600181016020830160005b868110156129c55760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b9050808452600484019350505061294c565b5060038606600181146129df57600281146129ef576129fa565b613d3d60f01b60028303526129fa565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b612a1c8383612c04565b612a296000848484612a6d565b612a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5f90613be9565b60405180910390fd5b505050565b6000612a8e8473ffffffffffffffffffffffffffffffffffffffff16612e6d565b15612bf7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ab7612056565b8786866040518563ffffffff1660e01b8152600401612ad99493929190613b25565b602060405180830381600087803b158015612af357600080fd5b505af1925050508015612b2457506040513d601f19601f82011682018060405250810190612b21919061322c565b60015b612ba7573d8060008114612b54576040519150601f19603f3d011682016040523d82523d6000602084013e612b59565b606091505b50600081511415612b9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9690613be9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bfc565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6b90613d29565b60405180910390fd5b612c7d81611fea565b15612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb490613c29565b60405180910390fd5b612cc960008383612a0d565b8060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d959190613f43565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612e8c90614118565b90600052602060002090601f016020900481019282612eae5760008555612ef5565b82601f10612ec757805160ff1916838001178555612ef5565b82800160010185558215612ef5579182015b82811115612ef4578251825591602001919060010190612ed9565b5b509050612f029190612f06565b5090565b5b80821115612f1f576000816000905550600101612f07565b5090565b6000612f36612f3184613e89565b613e64565b905082815260208101848484011115612f4e57600080fd5b612f598482856140d6565b509392505050565b6000612f74612f6f84613eba565b613e64565b905082815260208101848484011115612f8c57600080fd5b612f978482856140d6565b509392505050565b600081359050612fae8161494f565b92915050565b600081359050612fc381614966565b92915050565b600081359050612fd88161497d565b92915050565b600081519050612fed8161497d565b92915050565b600082601f83011261300457600080fd5b8135613014848260208601612f23565b91505092915050565b600082601f83011261302e57600080fd5b813561303e848260208601612f61565b91505092915050565b60008135905061305681614994565b92915050565b60006020828403121561306e57600080fd5b600061307c84828501612f9f565b91505092915050565b6000806040838503121561309857600080fd5b60006130a685828601612f9f565b92505060206130b785828601612f9f565b9150509250929050565b6000806000606084860312156130d657600080fd5b60006130e486828701612f9f565b93505060206130f586828701612f9f565b925050604061310686828701613047565b9150509250925092565b6000806000806080858703121561312657600080fd5b600061313487828801612f9f565b945050602061314587828801612f9f565b935050604061315687828801613047565b925050606085013567ffffffffffffffff81111561317357600080fd5b61317f87828801612ff3565b91505092959194509250565b6000806040838503121561319e57600080fd5b60006131ac85828601612f9f565b92505060206131bd85828601612fb4565b9150509250929050565b600080604083850312156131da57600080fd5b60006131e885828601612f9f565b92505060206131f985828601613047565b9150509250929050565b60006020828403121561321557600080fd5b600061322384828501612fc9565b91505092915050565b60006020828403121561323e57600080fd5b600061324c84828501612fde565b91505092915050565b60006020828403121561326757600080fd5b600082013567ffffffffffffffff81111561328157600080fd5b61328d8482850161301d565b91505092915050565b600080604083850312156132a957600080fd5b600083013567ffffffffffffffff8111156132c357600080fd5b6132cf8582860161301d565b925050602083013567ffffffffffffffff8111156132ec57600080fd5b6132f88582860161301d565b9150509250929050565b60008060008060008060c0878903121561331b57600080fd5b600087013567ffffffffffffffff81111561333557600080fd5b61334189828a0161301d565b965050602087013567ffffffffffffffff81111561335e57600080fd5b61336a89828a0161301d565b955050604087013567ffffffffffffffff81111561338757600080fd5b61339389828a0161301d565b945050606087013567ffffffffffffffff8111156133b057600080fd5b6133bc89828a0161301d565b935050608087013567ffffffffffffffff8111156133d957600080fd5b6133e589828a0161301d565b92505060a087013567ffffffffffffffff81111561340257600080fd5b61340e89828a0161301d565b9150509295509295509295565b60006020828403121561342d57600080fd5b600061343b84828501613047565b91505092915050565b60008060006060848603121561345957600080fd5b600061346786828701613047565b935050602084013567ffffffffffffffff81111561348457600080fd5b6134908682870161301d565b925050604084013567ffffffffffffffff8111156134ad57600080fd5b6134b98682870161301d565b9150509250925092565b6134cc81614058565b82525050565b6134db8161406a565b82525050565b60006134ec82613f00565b6134f68185613f16565b93506135068185602086016140e5565b61350f816142b1565b840191505092915050565b613523816140a2565b82525050565b600061353482613f0b565b61353e8185613f27565b935061354e8185602086016140e5565b613557816142b1565b840191505092915050565b600061356d82613f0b565b6135778185613f38565b93506135878185602086016140e5565b80840191505092915050565b600081546135a081614118565b6135aa8186613f38565b945060018216600081146135c557600181146135d657613609565b60ff19831686528186019350613609565b6135df85613eeb565b60005b83811015613601578154818901526001820191506020810190506135e2565b838801955050505b50505092915050565b600061361f602183613f27565b915061362a826142c2565b604082019050919050565b6000613642601383613f38565b915061364d82614311565b601382019050919050565b6000613665603283613f27565b91506136708261433a565b604082019050919050565b6000613688602683613f27565b915061369382614389565b604082019050919050565b60006136ab601c83613f27565b91506136b6826143d8565b602082019050919050565b60006136ce602483613f27565b91506136d982614401565b604082019050919050565b60006136f1601983613f27565b91506136fc82614450565b602082019050919050565b6000613714601f83613f27565b915061371f82614479565b602082019050919050565b6000613737602c83613f27565b9150613742826144a2565b604082019050919050565b600061375a603883613f27565b9150613765826144f1565b604082019050919050565b600061377d602a83613f27565b915061378882614540565b604082019050919050565b60006137a0602983613f27565b91506137ab8261458f565b604082019050919050565b60006137c3600283613f38565b91506137ce826145de565b600282019050919050565b60006137e6602083613f27565b91506137f182614607565b602082019050919050565b6000613809600d83613f38565b915061381482614630565b600d82019050919050565b600061382c600c83613f38565b915061383782614659565b600c82019050919050565b600061384f602c83613f27565b915061385a82614682565b604082019050919050565b6000613872602083613f27565b915061387d826146d1565b602082019050919050565b6000613895602983613f27565b91506138a0826146fa565b604082019050919050565b60006138b8601483613f38565b91506138c382614749565b601482019050919050565b60006138db602f83613f27565b91506138e682614772565b604082019050919050565b60006138fe600a83613f38565b9150613909826147c1565b600a82019050919050565b6000613921602183613f27565b915061392c826147ea565b604082019050919050565b6000613944601d83613f38565b915061394f82614839565b601d82019050919050565b6000613967603183613f27565b915061397282614862565b604082019050919050565b600061398a603083613f27565b9150613995826148b1565b604082019050919050565b60006139ad603083613f27565b91506139b882614900565b604082019050919050565b6139cc816140cc565b82525050565b60006139de8284613562565b915081905092915050565b60006139f58286613593565b9150613a018285613562565b9150613a0d8284613593565b9150819050949350505050565b6000613a25826138f1565b9150613a31828d613593565b9150613a3d828c613562565b9150613a49828b613593565b9150613a5482613635565b9150613a60828a613593565b9150613a6b8261381f565b9150613a778289613593565b9150613a82826137fc565b9150613a8e8288613593565b9150613a9a8287613562565b9150613aa68286613593565b9150613ab1826138ab565b9150613abd8285613593565b9150613ac98284613562565b9150613ad4826137b6565b91508190509b9a5050505050505050505050565b6000613af382613937565b9150613aff8284613562565b915081905092915050565b6000602082019050613b1f60008301846134c3565b92915050565b6000608082019050613b3a60008301876134c3565b613b4760208301866134c3565b613b5460408301856139c3565b8181036060830152613b6681846134e1565b905095945050505050565b6000602082019050613b8660008301846134d2565b92915050565b6000602082019050613ba1600083018461351a565b92915050565b60006020820190508181036000830152613bc18184613529565b905092915050565b60006020820190508181036000830152613be281613612565b9050919050565b60006020820190508181036000830152613c0281613658565b9050919050565b60006020820190508181036000830152613c228161367b565b9050919050565b60006020820190508181036000830152613c428161369e565b9050919050565b60006020820190508181036000830152613c62816136c1565b9050919050565b60006020820190508181036000830152613c82816136e4565b9050919050565b60006020820190508181036000830152613ca281613707565b9050919050565b60006020820190508181036000830152613cc28161372a565b9050919050565b60006020820190508181036000830152613ce28161374d565b9050919050565b60006020820190508181036000830152613d0281613770565b9050919050565b60006020820190508181036000830152613d2281613793565b9050919050565b60006020820190508181036000830152613d42816137d9565b9050919050565b60006020820190508181036000830152613d6281613842565b9050919050565b60006020820190508181036000830152613d8281613865565b9050919050565b60006020820190508181036000830152613da281613888565b9050919050565b60006020820190508181036000830152613dc2816138ce565b9050919050565b60006020820190508181036000830152613de281613914565b9050919050565b60006020820190508181036000830152613e028161395a565b9050919050565b60006020820190508181036000830152613e228161397d565b9050919050565b60006020820190508181036000830152613e42816139a0565b9050919050565b6000602082019050613e5e60008301846139c3565b92915050565b6000613e6e613e7f565b9050613e7a828261414a565b919050565b6000604051905090565b600067ffffffffffffffff821115613ea457613ea3614282565b5b613ead826142b1565b9050602081019050919050565b600067ffffffffffffffff821115613ed557613ed4614282565b5b613ede826142b1565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f4e826140cc565b9150613f59836140cc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f8e57613f8d6141f5565b5b828201905092915050565b6000613fa4826140cc565b9150613faf836140cc565b925082613fbf57613fbe614224565b5b828204905092915050565b6000613fd5826140cc565b9150613fe0836140cc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614019576140186141f5565b5b828202905092915050565b600061402f826140cc565b915061403a836140cc565b92508282101561404d5761404c6141f5565b5b828203905092915050565b6000614063826140ac565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141035780820151818401526020810190506140e8565b83811115614112576000848401525b50505050565b6000600282049050600182168061413057607f821691505b6020821081141561414457614143614253565b5b50919050565b614153826142b1565b810181811067ffffffffffffffff8211171561417257614171614282565b5b80604052505050565b6000614186826140cc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141b9576141b86141f5565b5b600182019050919050565b60006141cf826140cc565b91506141da836140cc565b9250826141ea576141e9614224565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f43616c6c6572206973206e6f7420746865206d696e74696e672061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206f6e6c79206d696e7420757020746f2032353620746f6b656e732e00600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b7f207c204c6963656e73653a200000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f222c202265787465726e616c5f75726c223a2022000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4f6e6c792070726f6a656374206f7220746f6b656e206f776e65722063616e2060008201527f656d697420746f6b656e206576656e7400000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61495881614058565b811461496357600080fd5b50565b61496f8161406a565b811461497a57600080fd5b50565b61498681614076565b811461499157600080fd5b50565b61499d816140cc565b81146149a857600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122063582e92c947da28ccb9a54b02b3a64fa07169406bc0525bdc59fb23b2372a5a64736f6c63430008020033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000047144372eb383466d18fc91db9cd0396aa6c87a4

-----Decoded View---------------
Arg [0] : eventualOwner (address): 0x47144372eb383466D18FC91DB9Cd0396Aa6c87A4

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000047144372eb383466d18fc91db9cd0396aa6c87a4


Deployed Bytecode Sourcemap

89:4640:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23416:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24334:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25845:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25383:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2045:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;509:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3634:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26709:330:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;376:26:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;600:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;691:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2406:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2147:255;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27105:179:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35571:241;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4406:320:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3783:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;256:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24037:235:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;541:21:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23775:205:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21517:92;;;:::i;:::-;;406:32:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20885:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24496:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26129:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3370:87:1;;;:::i;:::-;;27350:320:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;281:30:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2505:860;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;477:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;226:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22505:28:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4245:157:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26485:162:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;348:24:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;442:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3462:168;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21758:189:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;315:29:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;566;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23416:300:0;23518:4;23568:25;23553:40;;;:11;:40;;;;:104;;;;23624:33;23609:48;;;:11;:48;;;;23553:104;:156;;;;23673:36;23697:11;23673:23;:36::i;:::-;23553:156;23534:175;;23416:300;;;:::o;24334:98::-;24388:13;24420:5;24413:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24334:98;:::o;25845:217::-;25921:7;25948:16;25956:7;25948;:16::i;:::-;25940:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26031:15;:24;26047:7;26031:24;;;;;;;;;;;;;;;;;;;;;26024:31;;25845:217;;;:::o;25383:401::-;25463:13;25479:23;25494:7;25479:14;:23::i;:::-;25463:39;;25526:5;25520:11;;:2;:11;;;;25512:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25617:5;25601:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25626:37;25643:5;25650:12;:10;:12::i;:::-;25626:16;:37::i;:::-;25601:62;25580:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;25756:21;25765:2;25769:7;25756:8;:21::i;:::-;25383:401;;;:::o;2045:98:1:-;2097:7;2137:1;2119:15;;:19;;;;:::i;:::-;2112:26;;2045:98;:::o;509:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3634:145::-;21108:12:0;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3755:19:1::1;3734:18;:40;;;;;;;;;;;;:::i;:::-;;3634:145:::0;:::o;26709:330:0:-;26898:41;26917:12;:10;:12::i;:::-;26931:7;26898:18;:41::i;:::-;26890:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27004:28;27014:4;27020:2;27024:7;27004:9;:28::i;:::-;26709:330;;;:::o;376:26:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;600:87::-;645:42;600:87;:::o;691:52::-;725:18;691:52;:::o;2406:94::-;21108:12:0;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2489:6:1::1;2472:14;;:23;;;;;;;;;;;;;;;;;;2406:94:::0;:::o;2147:255::-;2216:12;:10;:12::i;:::-;2198:30;;:14;;;;;;;;;;;:30;;;2190:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2299:3;2280:15;;:22;;2272:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2344:30;2354:2;2358:15;;2344:9;:30::i;:::-;2380:15;;:17;;;;;;;;;:::i;:::-;;;;;;2147:255;:::o;27105:179:0:-;27238:39;27255:4;27261:2;27265:7;27238:39;;;;;;;;;;;;:16;:39::i;:::-;27105:179;;;:::o;35571:241::-;35687:41;35706:12;:10;:12::i;:::-;35720:7;35687:18;:41::i;:::-;35679:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;35791:14;35797:7;35791:5;:14::i;:::-;35571:241;:::o;4406:320:1:-;4536:12;:10;:12::i;:::-;4525:23;;:7;:5;:7::i;:::-;:23;;;:66;;;;4579:12;:10;:12::i;:::-;4552:39;;:23;4567:7;4552:14;:23::i;:::-;:39;;;4525:66;4510:145;;;;;;;;;;;;:::i;:::-;;;;;;;;;4700:10;4666:55;;;;;;:::i;:::-;;;;;;;;4691:7;4677:12;:10;:12::i;:::-;4666:55;;;4712:8;4666:55;;;;;;:::i;:::-;;;;;;;;4406:320;;;:::o;3783:458::-;21108:12:0;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4055:15:1::1;4038:14;:32;;;;;;;;;;;;:::i;:::-;;4093:15;4076:14;:32;;;;;;;;;;;;:::i;:::-;;4127:11;4114:10;:24;;;;;;;;;;;;:::i;:::-;;4159:13;4144:12;:28;;;;;;;;;;;;:::i;:::-;;4196:16;4178:15;:34;;;;;;;;;;;;:::i;:::-;;4228:8;4218:7;:18;;;;;;;;;;;;:::i;:::-;;3783:458:::0;;;;;;:::o;256:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24037:235:0:-;24109:7;24128:13;24144:7;:16;24152:7;24144:16;;;;;;;;;;;;;;;;;;;;;24128:32;;24195:1;24178:19;;:5;:19;;;;24170:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24260:5;24253:12;;;24037:235;;;:::o;541:21:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23775:205:0:-;23847:7;23891:1;23874:19;;:5;:19;;;;23866:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23957:9;:16;23967:5;23957:16;;;;;;;;;;;;;;;;23950:23;;23775:205;;;:::o;21517:92::-;21108:12;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21581:21:::1;21599:1;21581:9;:21::i;:::-;21517:92::o:0;406:32:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20885:85:0:-;20931:7;20957:6;;;;;;;;;;;20950:13;;20885:85;:::o;24496:102::-;24552:13;24584:7;24577:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24496:102;:::o;26129:290::-;26243:12;:10;:12::i;:::-;26231:24;;:8;:24;;;;26223:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26341:8;26296:18;:32;26315:12;:10;:12::i;:::-;26296:32;;;;;;;;;;;;;;;:42;26329:8;26296:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26393:8;26364:48;;26379:12;:10;:12::i;:::-;26364:48;;;26403:8;26364:48;;;;;;:::i;:::-;;;;;;;;26129:290;;:::o;3370:87:1:-;21108:12:0;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3439:13:1::1;;;;;;;;;;;3438:14;3422:13;;:30;;;;;;;;;;;;;;;;;;3370:87::o:0;27350:320:0:-;27519:41;27538:12;:10;:12::i;:::-;27552:7;27519:18;:41::i;:::-;27511:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27624:39;27638:4;27644:2;27648:7;27657:5;27624:13;:39::i;:::-;27350:320;;;;:::o;281:30:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2505:860::-;2578:13;2607:16;2615:7;2607;:16::i;:::-;2599:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2682:25;2710:18;:7;:16;:18::i;:::-;2682:46;;2739:13;;;;;;;;;;;2735:105;;;2793:7;2802:11;2815:16;2776:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2762:71;;;;;2735:105;2846:18;2867:416;2965:14;2981:18;:7;:16;:18::i;:::-;3001:14;3052:18;3088:7;3126:10;3138:11;3151:12;3201:15;3218:11;2921:338;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2867:13;:416::i;:::-;2846:437;;3353:4;3303:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;3289:70;;;;2505:860;;;;:::o;477:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;226:25::-;;;;;;;;;;;;;:::o;22505:28:0:-;;;;;;;;;;;;:::o;4245:157:1:-;21108:12:0;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4376:10:1::1;4349:48;;;;;;:::i;:::-;;;;;;;;4362:12;:10;:12::i;:::-;4349:48;;;4388:8;4349:48;;;;;;:::i;:::-;;;;;;;;4245:157:::0;;:::o;26485:162:0:-;26582:4;26605:18;:25;26624:5;26605:25;;;;;;;;;;;;;;;:35;26631:8;26605:35;;;;;;;;;;;;;;;;;;;;;;;;;26598:42;;26485:162;;;;:::o;348:24:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;442:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3462:168::-;21108:12:0;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3575:8:1::1;3565:7;:18;;;;;;;;;;;;:::i;:::-;;3608:17;3589:16;:36;;;;;;;;;;;;:::i;:::-;;3462:168:::0;;:::o;21758:189:0:-;21108:12;:10;:12::i;:::-;21097:23;;:7;:5;:7::i;:::-;:23;;;21089:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21866:1:::1;21846:22;;:8;:22;;;;21838:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21921:19;21931:8;21921:9;:19::i;:::-;21758:189:::0;:::o;315:29:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;566:::-;;;;;;;;;;;;;:::o;19841:155:0:-;19926:4;19964:25;19949:40;;;:11;:40;;;;19942:47;;19841:155;;;:::o;29142:125::-;29207:4;29258:1;29230:30;;:7;:16;29238:7;29230:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29223:37;;29142:125;;;:::o;15130:96::-;15183:7;15209:10;15202:17;;15130:96;:::o;33055:171::-;33156:2;33129:15;:24;33145:7;33129:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33211:7;33207:2;33173:46;;33182:23;33197:7;33182:14;:23::i;:::-;33173:46;;;;;;;;;;;;33055:171;;:::o;29425:344::-;29518:4;29542:16;29550:7;29542;:16::i;:::-;29534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29617:13;29633:23;29648:7;29633:14;:23::i;:::-;29617:39;;29685:5;29674:16;;:7;:16;;;:51;;;;29718:7;29694:31;;:20;29706:7;29694:11;:20::i;:::-;:31;;;29674:51;:87;;;;29729:32;29746:5;29753:7;29729:16;:32::i;:::-;29674:87;29666:96;;;29425:344;;;;:::o;32384:560::-;32538:4;32511:31;;:23;32526:7;32511:14;:23::i;:::-;:31;;;32503:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32620:1;32606:16;;:2;:16;;;;32598:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32674:39;32695:4;32701:2;32705:7;32674:20;:39::i;:::-;32775:29;32792:1;32796:7;32775:8;:29::i;:::-;32834:1;32815:9;:15;32825:4;32815:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32862:1;32845:9;:13;32855:2;32845:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32892:2;32873:7;:16;32881:7;32873:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32929:7;32925:2;32910:27;;32919:4;32910:27;;;;;;;;;;;;32384:560;;;:::o;30099:108::-;30174:26;30184:2;30188:7;30174:26;;;;;;;;;;;;:9;:26::i;:::-;30099:108;;:::o;31712:348::-;31771:13;31787:23;31802:7;31787:14;:23::i;:::-;31771:39;;31821:48;31842:5;31857:1;31861:7;31821:20;:48::i;:::-;31907:29;31924:1;31928:7;31907:8;:29::i;:::-;31967:1;31947:9;:16;31957:5;31947:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;31985:7;:16;31993:7;31985:16;;;;;;;;;;;;31978:23;;;;;;;;;;;32045:7;32041:1;32017:36;;32026:5;32017:36;;;;;;;;;;;;31712:348;;:::o;21953:169::-;22008:16;22027:6;;;;;;;;;;;22008:25;;22052:8;22043:6;;:17;;;;;;;;;;;;;;;;;;22106:8;22075:40;;22096:8;22075:40;;;;;;;;;;;;21953:169;;:::o;28532:307::-;28683:28;28693:4;28699:2;28703:7;28683:9;:28::i;:::-;28729:48;28752:4;28758:2;28762:7;28771:5;28729:22;:48::i;:::-;28721:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28532:307;;;;:::o;15553:703::-;15609:13;15835:1;15826:5;:10;15822:51;;;15852:10;;;;;;;;;;;;;;;;;;;;;15822:51;15882:12;15897:5;15882:20;;15912:14;15936:75;15951:1;15943:4;:9;15936:75;;15968:8;;;;;:::i;:::-;;;;15998:2;15990:10;;;;;:::i;:::-;;;15936:75;;;16020:19;16052:6;16042:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16020:39;;16069:150;16085:1;16076:5;:10;16069:150;;16112:1;16102:11;;;;;:::i;:::-;;;16178:2;16170:5;:10;;;;:::i;:::-;16157:2;:24;;;;:::i;:::-;16144:39;;16127:6;16134;16127:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;16206:2;16197:11;;;;;:::i;:::-;;;16069:150;;;16242:6;16228:21;;;;;15553:703;;;;:::o;17600:1557::-;17658:13;17683:11;17697:4;:11;17683:25;;17729:1;17722:3;:8;17718:23;;;17732:9;;;;;;;;;;;;;;;;;17718:23;17790:18;17828:1;17823;17817:3;:7;;;;:::i;:::-;17816:13;;;;:::i;:::-;17811:1;:19;;;;:::i;:::-;17790:40;;17885:19;17930:2;17917:10;:15;;;;:::i;:::-;17907:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17885:48;;17944:18;17965:5;;;;;;;;;;;;;;;;;17944:26;;18031:1;18024:5;18020:13;18075:2;18067:6;18063:15;18123:1;18092:757;18145:3;18142:1;18139:10;18092:757;;;18197:1;18194;18190:9;18185:14;;18254:8;18249:1;18243:4;18239:12;18233:19;18229:34;18332:4;18324:5;18320:2;18316:14;18312:25;18302:8;18298:40;18292:47;18370:3;18367:1;18363:11;18356:18;;18460:4;18451;18443:5;18439:2;18435:14;18431:25;18421:8;18417:40;18411:47;18407:58;18402:3;18398:68;18391:75;;18497:3;18494:1;18490:11;18483:18;;18586:4;18577;18569:5;18566:1;18562:13;18558:24;18548:8;18544:39;18538:46;18534:57;18529:3;18525:67;18518:74;;18623:3;18620:1;18616:11;18609:18;;18704:4;18695;18688:5;18684:16;18674:8;18670:31;18664:38;18660:49;18655:3;18651:59;18644:66;;18743:3;18738;18734:13;18727:20;;18783:3;18772:9;18765:22;18833:1;18822:9;18818:17;18805:30;;18167:682;;18092:757;;;18096:42;18879:1;18874:3;18870:11;18899:1;18894:82;;;;18994:1;18989:80;;;;18863:206;;18894:82;18954:6;18949:3;18945:16;18941:1;18930:9;18926:17;18919:43;18894:82;;18989:80;19049:4;19044:3;19040:14;19036:1;19025:9;19021:17;19014:41;18863:206;;19098:10;19090:6;19083:26;17990:1129;;19143:6;19129:21;;;;;;17600:1557;;;;:::o;35113:122::-;;;;:::o;30428:311::-;30553:18;30559:2;30563:7;30553:5;:18::i;:::-;30602:54;30633:1;30637:2;30641:7;30650:5;30602:22;:54::i;:::-;30581:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;30428:311;;;:::o;33779:778::-;33929:4;33949:15;:2;:13;;;:15::i;:::-;33945:606;;;34000:2;33984:36;;;34021:12;:10;:12::i;:::-;34035:4;34041:7;34050:5;33984:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33980:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34240:1;34223:6;:13;:18;34219:266;;;34265:60;;;;;;;;;;:::i;:::-;;;;;;;;34219:266;34437:6;34431:13;34422:6;34418:2;34414:15;34407:38;33980:519;34116:41;;;34106:51;;;:6;:51;;;;34099:58;;;;;33945:606;34536:4;34529:11;;33779:778;;;;;;;:::o;31061:434::-;31154:1;31140:16;;:2;:16;;;;31132:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31212:16;31220:7;31212;:16::i;:::-;31211:17;31203:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31272:45;31301:1;31305:2;31309:7;31272:20;:45::i;:::-;31368:7;31353:13;;;;;;;;;;31332:44;;31349:1;31332:44;;;;;;;;;;;;31404:1;31387:9;:13;31397:2;31387:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31434:2;31415:7;:16;31423:7;31415:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31480:7;31476:2;31452:36;;31461:13;;;;;;;;;;31452:36;;;;;;;;;;;;31061:434;;:::o;7462:377::-;7522:4;7725:12;7790:7;7778:20;7770:28;;7831:1;7824:4;:8;7817:15;;;7462:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:2:-;;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;;;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;;;;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;;;;;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;;;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:633::-;;;5963:2;5951:9;5942:7;5938:23;5934:32;5931:2;;;5979:1;5976;5969:12;5931:2;6050:1;6039:9;6035:17;6022:31;6080:18;6072:6;6069:30;6066:2;;;6112:1;6109;6102:12;6066:2;6140:63;6195:7;6186:6;6175:9;6171:22;6140:63;:::i;:::-;6130:73;;5993:220;6280:2;6269:9;6265:18;6252:32;6311:18;6303:6;6300:30;6297:2;;;6343:1;6340;6333:12;6297:2;6371:63;6426:7;6417:6;6406:9;6402:22;6371:63;:::i;:::-;6361:73;;6223:221;5921:530;;;;;:::o;6457:1668::-;;;;;;;6710:3;6698:9;6689:7;6685:23;6681:33;6678:2;;;6727:1;6724;6717:12;6678:2;6798:1;6787:9;6783:17;6770:31;6828:18;6820:6;6817:30;6814:2;;;6860:1;6857;6850:12;6814:2;6888:63;6943:7;6934:6;6923:9;6919:22;6888:63;:::i;:::-;6878:73;;6741:220;7028:2;7017:9;7013:18;7000:32;7059:18;7051:6;7048:30;7045:2;;;7091:1;7088;7081:12;7045:2;7119:63;7174:7;7165:6;7154:9;7150:22;7119:63;:::i;:::-;7109:73;;6971:221;7259:2;7248:9;7244:18;7231:32;7290:18;7282:6;7279:30;7276:2;;;7322:1;7319;7312:12;7276:2;7350:63;7405:7;7396:6;7385:9;7381:22;7350:63;:::i;:::-;7340:73;;7202:221;7490:2;7479:9;7475:18;7462:32;7521:18;7513:6;7510:30;7507:2;;;7553:1;7550;7543:12;7507:2;7581:63;7636:7;7627:6;7616:9;7612:22;7581:63;:::i;:::-;7571:73;;7433:221;7721:3;7710:9;7706:19;7693:33;7753:18;7745:6;7742:30;7739:2;;;7785:1;7782;7775:12;7739:2;7813:63;7868:7;7859:6;7848:9;7844:22;7813:63;:::i;:::-;7803:73;;7664:222;7953:3;7942:9;7938:19;7925:33;7985:18;7977:6;7974:30;7971:2;;;8017:1;8014;8007:12;7971:2;8045:63;8100:7;8091:6;8080:9;8076:22;8045:63;:::i;:::-;8035:73;;7896:222;6668:1457;;;;;;;;:::o;8131:262::-;;8239:2;8227:9;8218:7;8214:23;8210:32;8207:2;;;8255:1;8252;8245:12;8207:2;8298:1;8323:53;8368:7;8359:6;8348:9;8344:22;8323:53;:::i;:::-;8313:63;;8269:117;8197:196;;;;:::o;8399:778::-;;;;8561:2;8549:9;8540:7;8536:23;8532:32;8529:2;;;8577:1;8574;8567:12;8529:2;8620:1;8645:53;8690:7;8681:6;8670:9;8666:22;8645:53;:::i;:::-;8635:63;;8591:117;8775:2;8764:9;8760:18;8747:32;8806:18;8798:6;8795:30;8792:2;;;8838:1;8835;8828:12;8792:2;8866:63;8921:7;8912:6;8901:9;8897:22;8866:63;:::i;:::-;8856:73;;8718:221;9006:2;8995:9;8991:18;8978:32;9037:18;9029:6;9026:30;9023:2;;;9069:1;9066;9059:12;9023:2;9097:63;9152:7;9143:6;9132:9;9128:22;9097:63;:::i;:::-;9087:73;;8949:221;8519:658;;;;;:::o;9183:118::-;9270:24;9288:5;9270:24;:::i;:::-;9265:3;9258:37;9248:53;;:::o;9307:109::-;9388:21;9403:5;9388:21;:::i;:::-;9383:3;9376:34;9366:50;;:::o;9422:360::-;;9536:38;9568:5;9536:38;:::i;:::-;9590:70;9653:6;9648:3;9590:70;:::i;:::-;9583:77;;9669:52;9714:6;9709:3;9702:4;9695:5;9691:16;9669:52;:::i;:::-;9746:29;9768:6;9746:29;:::i;:::-;9741:3;9737:39;9730:46;;9512:270;;;;;:::o;9788:115::-;9873:23;9890:5;9873:23;:::i;:::-;9868:3;9861:36;9851:52;;:::o;9909:364::-;;10025:39;10058:5;10025:39;:::i;:::-;10080:71;10144:6;10139:3;10080:71;:::i;:::-;10073:78;;10160:52;10205:6;10200:3;10193:4;10186:5;10182:16;10160:52;:::i;:::-;10237:29;10259:6;10237:29;:::i;:::-;10232:3;10228:39;10221:46;;10001:272;;;;;:::o;10279:377::-;;10413:39;10446:5;10413:39;:::i;:::-;10468:89;10550:6;10545:3;10468:89;:::i;:::-;10461:96;;10566:52;10611:6;10606:3;10599:4;10592:5;10588:16;10566:52;:::i;:::-;10643:6;10638:3;10634:16;10627:23;;10389:267;;;;;:::o;10686:845::-;;10826:5;10820:12;10855:36;10881:9;10855:36;:::i;:::-;10907:89;10989:6;10984:3;10907:89;:::i;:::-;10900:96;;11027:1;11016:9;11012:17;11043:1;11038:137;;;;11189:1;11184:341;;;;11005:520;;11038:137;11122:4;11118:9;11107;11103:25;11098:3;11091:38;11158:6;11153:3;11149:16;11142:23;;11038:137;;11184:341;11251:38;11283:5;11251:38;:::i;:::-;11311:1;11325:154;11339:6;11336:1;11333:13;11325:154;;;11413:7;11407:14;11403:1;11398:3;11394:11;11387:35;11463:1;11454:7;11450:15;11439:26;;11361:4;11358:1;11354:12;11349:17;;11325:154;;;11508:6;11503:3;11499:16;11492:23;;11191:334;;11005:520;;10793:738;;;;;;:::o;11537:366::-;;11700:67;11764:2;11759:3;11700:67;:::i;:::-;11693:74;;11776:93;11865:3;11776:93;:::i;:::-;11894:2;11889:3;11885:12;11878:19;;11683:220;;;:::o;11909:402::-;;12090:85;12172:2;12167:3;12090:85;:::i;:::-;12083:92;;12184:93;12273:3;12184:93;:::i;:::-;12302:2;12297:3;12293:12;12286:19;;12073:238;;;:::o;12317:366::-;;12480:67;12544:2;12539:3;12480:67;:::i;:::-;12473:74;;12556:93;12645:3;12556:93;:::i;:::-;12674:2;12669:3;12665:12;12658:19;;12463:220;;;:::o;12689:366::-;;12852:67;12916:2;12911:3;12852:67;:::i;:::-;12845:74;;12928:93;13017:3;12928:93;:::i;:::-;13046:2;13041:3;13037:12;13030:19;;12835:220;;;:::o;13061:366::-;;13224:67;13288:2;13283:3;13224:67;:::i;:::-;13217:74;;13300:93;13389:3;13300:93;:::i;:::-;13418:2;13413:3;13409:12;13402:19;;13207:220;;;:::o;13433:366::-;;13596:67;13660:2;13655:3;13596:67;:::i;:::-;13589:74;;13672:93;13761:3;13672:93;:::i;:::-;13790:2;13785:3;13781:12;13774:19;;13579:220;;;:::o;13805:366::-;;13968:67;14032:2;14027:3;13968:67;:::i;:::-;13961:74;;14044:93;14133:3;14044:93;:::i;:::-;14162:2;14157:3;14153:12;14146:19;;13951:220;;;:::o;14177:366::-;;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14323:220;;;:::o;14549:366::-;;14712:67;14776:2;14771:3;14712:67;:::i;:::-;14705:74;;14788:93;14877:3;14788:93;:::i;:::-;14906:2;14901:3;14897:12;14890:19;;14695:220;;;:::o;14921:366::-;;15084:67;15148:2;15143:3;15084:67;:::i;:::-;15077:74;;15160:93;15249:3;15160:93;:::i;:::-;15278:2;15273:3;15269:12;15262:19;;15067:220;;;:::o;15293:366::-;;15456:67;15520:2;15515:3;15456:67;:::i;:::-;15449:74;;15532:93;15621:3;15532:93;:::i;:::-;15650:2;15645:3;15641:12;15634:19;;15439:220;;;:::o;15665:366::-;;15828:67;15892:2;15887:3;15828:67;:::i;:::-;15821:74;;15904:93;15993:3;15904:93;:::i;:::-;16022:2;16017:3;16013:12;16006:19;;15811:220;;;:::o;16037:400::-;;16218:84;16300:1;16295:3;16218:84;:::i;:::-;16211:91;;16311:93;16400:3;16311:93;:::i;:::-;16429:1;16424:3;16420:11;16413:18;;16201:236;;;:::o;16443:366::-;;16606:67;16670:2;16665:3;16606:67;:::i;:::-;16599:74;;16682:93;16771:3;16682:93;:::i;:::-;16800:2;16795:3;16791:12;16784:19;;16589:220;;;:::o;16815:402::-;;16996:85;17078:2;17073:3;16996:85;:::i;:::-;16989:92;;17090:93;17179:3;17090:93;:::i;:::-;17208:2;17203:3;17199:12;17192:19;;16979:238;;;:::o;17223:402::-;;17404:85;17486:2;17481:3;17404:85;:::i;:::-;17397:92;;17498:93;17587:3;17498:93;:::i;:::-;17616:2;17611:3;17607:12;17600:19;;17387:238;;;:::o;17631:366::-;;17794:67;17858:2;17853:3;17794:67;:::i;:::-;17787:74;;17870:93;17959:3;17870:93;:::i;:::-;17988:2;17983:3;17979:12;17972:19;;17777:220;;;:::o;18003:366::-;;18166:67;18230:2;18225:3;18166:67;:::i;:::-;18159:74;;18242:93;18331:3;18242:93;:::i;:::-;18360:2;18355:3;18351:12;18344:19;;18149:220;;;:::o;18375:366::-;;18538:67;18602:2;18597:3;18538:67;:::i;:::-;18531:74;;18614:93;18703:3;18614:93;:::i;:::-;18732:2;18727:3;18723:12;18716:19;;18521:220;;;:::o;18747:402::-;;18928:85;19010:2;19005:3;18928:85;:::i;:::-;18921:92;;19022:93;19111:3;19022:93;:::i;:::-;19140:2;19135:3;19131:12;19124:19;;18911:238;;;:::o;19155:366::-;;19318:67;19382:2;19377:3;19318:67;:::i;:::-;19311:74;;19394:93;19483:3;19394:93;:::i;:::-;19512:2;19507:3;19503:12;19496:19;;19301:220;;;:::o;19527:402::-;;19708:85;19790:2;19785:3;19708:85;:::i;:::-;19701:92;;19802:93;19891:3;19802:93;:::i;:::-;19920:2;19915:3;19911:12;19904:19;;19691:238;;;:::o;19935:366::-;;20098:67;20162:2;20157:3;20098:67;:::i;:::-;20091:74;;20174:93;20263:3;20174:93;:::i;:::-;20292:2;20287:3;20283:12;20276:19;;20081:220;;;:::o;20307:402::-;;20488:85;20570:2;20565:3;20488:85;:::i;:::-;20481:92;;20582:93;20671:3;20582:93;:::i;:::-;20700:2;20695:3;20691:12;20684:19;;20471:238;;;:::o;20715:366::-;;20878:67;20942:2;20937:3;20878:67;:::i;:::-;20871:74;;20954:93;21043:3;20954:93;:::i;:::-;21072:2;21067:3;21063:12;21056:19;;20861:220;;;:::o;21087:366::-;;21250:67;21314:2;21309:3;21250:67;:::i;:::-;21243:74;;21326:93;21415:3;21326:93;:::i;:::-;21444:2;21439:3;21435:12;21428:19;;21233:220;;;:::o;21459:366::-;;21622:67;21686:2;21681:3;21622:67;:::i;:::-;21615:74;;21698:93;21787:3;21698:93;:::i;:::-;21816:2;21811:3;21807:12;21800:19;;21605:220;;;:::o;21831:118::-;21918:24;21936:5;21918:24;:::i;:::-;21913:3;21906:37;21896:53;;:::o;21955:275::-;;22109:95;22200:3;22191:6;22109:95;:::i;:::-;22102:102;;22221:3;22214:10;;22091:139;;;;:::o;22236:583::-;;22480:92;22568:3;22559:6;22480:92;:::i;:::-;22473:99;;22589:95;22680:3;22671:6;22589:95;:::i;:::-;22582:102;;22701:92;22789:3;22780:6;22701:92;:::i;:::-;22694:99;;22810:3;22803:10;;22462:357;;;;;;:::o;22825:3269::-;;23996:148;24140:3;23996:148;:::i;:::-;23989:155;;24161:92;24249:3;24240:6;24161:92;:::i;:::-;24154:99;;24270:95;24361:3;24352:6;24270:95;:::i;:::-;24263:102;;24382:92;24470:3;24461:6;24382:92;:::i;:::-;24375:99;;24491:148;24635:3;24491:148;:::i;:::-;24484:155;;24656:92;24744:3;24735:6;24656:92;:::i;:::-;24649:99;;24765:148;24909:3;24765:148;:::i;:::-;24758:155;;24930:92;25018:3;25009:6;24930:92;:::i;:::-;24923:99;;25039:148;25183:3;25039:148;:::i;:::-;25032:155;;25204:92;25292:3;25283:6;25204:92;:::i;:::-;25197:99;;25313:95;25404:3;25395:6;25313:95;:::i;:::-;25306:102;;25425:92;25513:3;25504:6;25425:92;:::i;:::-;25418:99;;25534:148;25678:3;25534:148;:::i;:::-;25527:155;;25699:92;25787:3;25778:6;25699:92;:::i;:::-;25692:99;;25808:95;25899:3;25890:6;25808:95;:::i;:::-;25801:102;;25920:148;26064:3;25920:148;:::i;:::-;25913:155;;26085:3;26078:10;;23978:2116;;;;;;;;;;;;;:::o;26100:541::-;;26355:148;26499:3;26355:148;:::i;:::-;26348:155;;26520:95;26611:3;26602:6;26520:95;:::i;:::-;26513:102;;26632:3;26625:10;;26337:304;;;;:::o;26647:222::-;;26778:2;26767:9;26763:18;26755:26;;26791:71;26859:1;26848:9;26844:17;26835:6;26791:71;:::i;:::-;26745:124;;;;:::o;26875:640::-;;27108:3;27097:9;27093:19;27085:27;;27122:71;27190:1;27179:9;27175:17;27166:6;27122:71;:::i;:::-;27203:72;27271:2;27260:9;27256:18;27247:6;27203:72;:::i;:::-;27285;27353:2;27342:9;27338:18;27329:6;27285:72;:::i;:::-;27404:9;27398:4;27394:20;27389:2;27378:9;27374:18;27367:48;27432:76;27503:4;27494:6;27432:76;:::i;:::-;27424:84;;27075:440;;;;;;;:::o;27521:210::-;;27646:2;27635:9;27631:18;27623:26;;27659:65;27721:1;27710:9;27706:17;27697:6;27659:65;:::i;:::-;27613:118;;;;:::o;27737:218::-;;27866:2;27855:9;27851:18;27843:26;;27879:69;27945:1;27934:9;27930:17;27921:6;27879:69;:::i;:::-;27833:122;;;;:::o;27961:313::-;;28112:2;28101:9;28097:18;28089:26;;28161:9;28155:4;28151:20;28147:1;28136:9;28132:17;28125:47;28189:78;28262:4;28253:6;28189:78;:::i;:::-;28181:86;;28079:195;;;;:::o;28280:419::-;;28484:2;28473:9;28469:18;28461:26;;28533:9;28527:4;28523:20;28519:1;28508:9;28504:17;28497:47;28561:131;28687:4;28561:131;:::i;:::-;28553:139;;28451:248;;;:::o;28705:419::-;;28909:2;28898:9;28894:18;28886:26;;28958:9;28952:4;28948:20;28944:1;28933:9;28929:17;28922:47;28986:131;29112:4;28986:131;:::i;:::-;28978:139;;28876:248;;;:::o;29130:419::-;;29334:2;29323:9;29319:18;29311:26;;29383:9;29377:4;29373:20;29369:1;29358:9;29354:17;29347:47;29411:131;29537:4;29411:131;:::i;:::-;29403:139;;29301:248;;;:::o;29555:419::-;;29759:2;29748:9;29744:18;29736:26;;29808:9;29802:4;29798:20;29794:1;29783:9;29779:17;29772:47;29836:131;29962:4;29836:131;:::i;:::-;29828:139;;29726:248;;;:::o;29980:419::-;;30184:2;30173:9;30169:18;30161:26;;30233:9;30227:4;30223:20;30219:1;30208:9;30204:17;30197:47;30261:131;30387:4;30261:131;:::i;:::-;30253:139;;30151:248;;;:::o;30405:419::-;;30609:2;30598:9;30594:18;30586:26;;30658:9;30652:4;30648:20;30644:1;30633:9;30629:17;30622:47;30686:131;30812:4;30686:131;:::i;:::-;30678:139;;30576:248;;;:::o;30830:419::-;;31034:2;31023:9;31019:18;31011:26;;31083:9;31077:4;31073:20;31069:1;31058:9;31054:17;31047:47;31111:131;31237:4;31111:131;:::i;:::-;31103:139;;31001:248;;;:::o;31255:419::-;;31459:2;31448:9;31444:18;31436:26;;31508:9;31502:4;31498:20;31494:1;31483:9;31479:17;31472:47;31536:131;31662:4;31536:131;:::i;:::-;31528:139;;31426:248;;;:::o;31680:419::-;;31884:2;31873:9;31869:18;31861:26;;31933:9;31927:4;31923:20;31919:1;31908:9;31904:17;31897:47;31961:131;32087:4;31961:131;:::i;:::-;31953:139;;31851:248;;;:::o;32105:419::-;;32309:2;32298:9;32294:18;32286:26;;32358:9;32352:4;32348:20;32344:1;32333:9;32329:17;32322:47;32386:131;32512:4;32386:131;:::i;:::-;32378:139;;32276:248;;;:::o;32530:419::-;;32734:2;32723:9;32719:18;32711:26;;32783:9;32777:4;32773:20;32769:1;32758:9;32754:17;32747:47;32811:131;32937:4;32811:131;:::i;:::-;32803:139;;32701:248;;;:::o;32955:419::-;;33159:2;33148:9;33144:18;33136:26;;33208:9;33202:4;33198:20;33194:1;33183:9;33179:17;33172:47;33236:131;33362:4;33236:131;:::i;:::-;33228:139;;33126:248;;;:::o;33380:419::-;;33584:2;33573:9;33569:18;33561:26;;33633:9;33627:4;33623:20;33619:1;33608:9;33604:17;33597:47;33661:131;33787:4;33661:131;:::i;:::-;33653:139;;33551:248;;;:::o;33805:419::-;;34009:2;33998:9;33994:18;33986:26;;34058:9;34052:4;34048:20;34044:1;34033:9;34029:17;34022:47;34086:131;34212:4;34086:131;:::i;:::-;34078:139;;33976:248;;;:::o;34230:419::-;;34434:2;34423:9;34419:18;34411:26;;34483:9;34477:4;34473:20;34469:1;34458:9;34454:17;34447:47;34511:131;34637:4;34511:131;:::i;:::-;34503:139;;34401:248;;;:::o;34655:419::-;;34859:2;34848:9;34844:18;34836:26;;34908:9;34902:4;34898:20;34894:1;34883:9;34879:17;34872:47;34936:131;35062:4;34936:131;:::i;:::-;34928:139;;34826:248;;;:::o;35080:419::-;;35284:2;35273:9;35269:18;35261:26;;35333:9;35327:4;35323:20;35319:1;35308:9;35304:17;35297:47;35361:131;35487:4;35361:131;:::i;:::-;35353:139;;35251:248;;;:::o;35505:419::-;;35709:2;35698:9;35694:18;35686:26;;35758:9;35752:4;35748:20;35744:1;35733:9;35729:17;35722:47;35786:131;35912:4;35786:131;:::i;:::-;35778:139;;35676:248;;;:::o;35930:419::-;;36134:2;36123:9;36119:18;36111:26;;36183:9;36177:4;36173:20;36169:1;36158:9;36154:17;36147:47;36211:131;36337:4;36211:131;:::i;:::-;36203:139;;36101:248;;;:::o;36355:419::-;;36559:2;36548:9;36544:18;36536:26;;36608:9;36602:4;36598:20;36594:1;36583:9;36579:17;36572:47;36636:131;36762:4;36636:131;:::i;:::-;36628:139;;36526:248;;;:::o;36780:222::-;;36911:2;36900:9;36896:18;36888:26;;36924:71;36992:1;36981:9;36977:17;36968:6;36924:71;:::i;:::-;36878:124;;;;:::o;37008:129::-;;37069:20;;:::i;:::-;37059:30;;37098:33;37126:4;37118:6;37098:33;:::i;:::-;37049:88;;;:::o;37143:75::-;;37209:2;37203:9;37193:19;;37183:35;:::o;37224:307::-;;37375:18;37367:6;37364:30;37361:2;;;37397:18;;:::i;:::-;37361:2;37435:29;37457:6;37435:29;:::i;:::-;37427:37;;37519:4;37513;37509:15;37501:23;;37290:241;;;:::o;37537:308::-;;37689:18;37681:6;37678:30;37675:2;;;37711:18;;:::i;:::-;37675:2;37749:29;37771:6;37749:29;:::i;:::-;37741:37;;37833:4;37827;37823:15;37815:23;;37604:241;;;:::o;37851:141::-;;37923:3;37915:11;;37946:3;37943:1;37936:14;37980:4;37977:1;37967:18;37959:26;;37905:87;;;:::o;37998:98::-;;38083:5;38077:12;38067:22;;38056:40;;;:::o;38102:99::-;;38188:5;38182:12;38172:22;;38161:40;;;:::o;38207:168::-;;38324:6;38319:3;38312:19;38364:4;38359:3;38355:14;38340:29;;38302:73;;;;:::o;38381:169::-;;38499:6;38494:3;38487:19;38539:4;38534:3;38530:14;38515:29;;38477:73;;;;:::o;38556:148::-;;38695:3;38680:18;;38670:34;;;;:::o;38710:305::-;;38769:20;38787:1;38769:20;:::i;:::-;38764:25;;38803:20;38821:1;38803:20;:::i;:::-;38798:25;;38957:1;38889:66;38885:74;38882:1;38879:81;38876:2;;;38963:18;;:::i;:::-;38876:2;39007:1;39004;39000:9;38993:16;;38754:261;;;;:::o;39021:185::-;;39078:20;39096:1;39078:20;:::i;:::-;39073:25;;39112:20;39130:1;39112:20;:::i;:::-;39107:25;;39151:1;39141:2;;39156:18;;:::i;:::-;39141:2;39198:1;39195;39191:9;39186:14;;39063:143;;;;:::o;39212:348::-;;39275:20;39293:1;39275:20;:::i;:::-;39270:25;;39309:20;39327:1;39309:20;:::i;:::-;39304:25;;39497:1;39429:66;39425:74;39422:1;39419:81;39414:1;39407:9;39400:17;39396:105;39393:2;;;39504:18;;:::i;:::-;39393:2;39552:1;39549;39545:9;39534:20;;39260:300;;;;:::o;39566:191::-;;39626:20;39644:1;39626:20;:::i;:::-;39621:25;;39660:20;39678:1;39660:20;:::i;:::-;39655:25;;39699:1;39696;39693:8;39690:2;;;39704:18;;:::i;:::-;39690:2;39749:1;39746;39742:9;39734:17;;39611:146;;;;:::o;39763:96::-;;39829:24;39847:5;39829:24;:::i;:::-;39818:35;;39808:51;;;:::o;39865:90::-;;39942:5;39935:13;39928:21;39917:32;;39907:48;;;:::o;39961:149::-;;40037:66;40030:5;40026:78;40015:89;;40005:105;;;:::o;40116:76::-;;40181:5;40170:16;;40160:32;;;:::o;40198:126::-;;40275:42;40268:5;40264:54;40253:65;;40243:81;;;:::o;40330:77::-;;40396:5;40385:16;;40375:32;;;:::o;40413:154::-;40497:6;40492:3;40487;40474:30;40559:1;40550:6;40545:3;40541:16;40534:27;40464:103;;;:::o;40573:307::-;40641:1;40651:113;40665:6;40662:1;40659:13;40651:113;;;40750:1;40745:3;40741:11;40735:18;40731:1;40726:3;40722:11;40715:39;40687:2;40684:1;40680:10;40675:15;;40651:113;;;40782:6;40779:1;40776:13;40773:2;;;40862:1;40853:6;40848:3;40844:16;40837:27;40773:2;40622:258;;;;:::o;40886:320::-;;40967:1;40961:4;40957:12;40947:22;;41014:1;41008:4;41004:12;41035:18;41025:2;;41091:4;41083:6;41079:17;41069:27;;41025:2;41153;41145:6;41142:14;41122:18;41119:38;41116:2;;;41172:18;;:::i;:::-;41116:2;40937:269;;;;:::o;41212:281::-;41295:27;41317:4;41295:27;:::i;:::-;41287:6;41283:40;41425:6;41413:10;41410:22;41389:18;41377:10;41374:34;41371:62;41368:2;;;41436:18;;:::i;:::-;41368:2;41476:10;41472:2;41465:22;41255:238;;;:::o;41499:233::-;;41561:24;41579:5;41561:24;:::i;:::-;41552:33;;41607:66;41600:5;41597:77;41594:2;;;41677:18;;:::i;:::-;41594:2;41724:1;41717:5;41713:13;41706:20;;41542:190;;;:::o;41738:176::-;;41787:20;41805:1;41787:20;:::i;:::-;41782:25;;41821:20;41839:1;41821:20;:::i;:::-;41816:25;;41860:1;41850:2;;41865:18;;:::i;:::-;41850:2;41906:1;41903;41899:9;41894:14;;41772:142;;;;:::o;41920:180::-;41968:77;41965:1;41958:88;42065:4;42062:1;42055:15;42089:4;42086:1;42079:15;42106:180;42154:77;42151:1;42144:88;42251:4;42248:1;42241:15;42275:4;42272:1;42265:15;42292:180;42340:77;42337:1;42330:88;42437:4;42434:1;42427:15;42461:4;42458:1;42451:15;42478:180;42526:77;42523:1;42516:88;42623:4;42620:1;42613:15;42647:4;42644:1;42637:15;42664:102;;42756:2;42752:7;42747:2;42740:5;42736:14;42732:28;42722:38;;42712:54;;;:::o;42772:220::-;42912:34;42908:1;42900:6;42896:14;42889:58;42981:3;42976:2;42968:6;42964:15;42957:28;42878:114;:::o;42998:214::-;43138:66;43134:1;43126:6;43122:14;43115:90;43104:108;:::o;43218:237::-;43358:34;43354:1;43346:6;43342:14;43335:58;43427:20;43422:2;43414:6;43410:15;43403:45;43324:131;:::o;43461:225::-;43601:34;43597:1;43589:6;43585:14;43578:58;43670:8;43665:2;43657:6;43653:15;43646:33;43567:119;:::o;43692:178::-;43832:30;43828:1;43820:6;43816:14;43809:54;43798:72;:::o;43876:223::-;44016:34;44012:1;44004:6;44000:14;43993:58;44085:6;44080:2;44072:6;44068:15;44061:31;43982:117;:::o;44105:175::-;44245:27;44241:1;44233:6;44229:14;44222:51;44211:69;:::o;44286:181::-;44426:33;44422:1;44414:6;44410:14;44403:57;44392:75;:::o;44473:231::-;44613:34;44609:1;44601:6;44597:14;44590:58;44682:14;44677:2;44669:6;44665:15;44658:39;44579:125;:::o;44710:243::-;44850:34;44846:1;44838:6;44834:14;44827:58;44919:26;44914:2;44906:6;44902:15;44895:51;44816:137;:::o;44959:229::-;45099:34;45095:1;45087:6;45083:14;45076:58;45168:12;45163:2;45155:6;45151:15;45144:37;45065:123;:::o;45194:228::-;45334:34;45330:1;45322:6;45318:14;45311:58;45403:11;45398:2;45390:6;45386:15;45379:36;45300:122;:::o;45428:214::-;45568:66;45564:1;45556:6;45552:14;45545:90;45534:108;:::o;45648:182::-;45788:34;45784:1;45776:6;45772:14;45765:58;45754:76;:::o;45836:214::-;45976:66;45972:1;45964:6;45960:14;45953:90;45942:108;:::o;46056:162::-;46196:14;46192:1;46184:6;46180:14;46173:38;46162:56;:::o;46224:231::-;46364:34;46360:1;46352:6;46348:14;46341:58;46433:14;46428:2;46420:6;46416:15;46409:39;46330:125;:::o;46461:182::-;46601:34;46597:1;46589:6;46585:14;46578:58;46567:76;:::o;46649:228::-;46789:34;46785:1;46777:6;46773:14;46766:58;46858:11;46853:2;46845:6;46841:15;46834:36;46755:122;:::o;46883:214::-;47023:66;47019:1;47011:6;47007:14;47000:90;46989:108;:::o;47103:234::-;47243:34;47239:1;47231:6;47227:14;47220:58;47312:17;47307:2;47299:6;47295:15;47288:42;47209:128;:::o;47343:214::-;47483:66;47479:1;47471:6;47467:14;47460:90;47449:108;:::o;47563:220::-;47703:34;47699:1;47691:6;47687:14;47680:58;47772:3;47767:2;47759:6;47755:15;47748:28;47669:114;:::o;47789:179::-;47929:31;47925:1;47917:6;47913:14;47906:55;47895:73;:::o;47974:236::-;48114:34;48110:1;48102:6;48098:14;48091:58;48183:19;48178:2;48170:6;48166:15;48159:44;48080:130;:::o;48216:235::-;48356:34;48352:1;48344:6;48340:14;48333:58;48425:18;48420:2;48412:6;48408:15;48401:43;48322:129;:::o;48457:235::-;48597:34;48593:1;48585:6;48581:14;48574:58;48666:18;48661:2;48653:6;48649:15;48642:43;48563:129;:::o;48698:122::-;48771:24;48789:5;48771:24;:::i;:::-;48764:5;48761:35;48751:2;;48810:1;48807;48800:12;48751:2;48741:79;:::o;48826:116::-;48896:21;48911:5;48896:21;:::i;:::-;48889:5;48886:32;48876:2;;48932:1;48929;48922:12;48876:2;48866:76;:::o;48948:120::-;49020:23;49037:5;49020:23;:::i;:::-;49013:5;49010:34;49000:2;;49058:1;49055;49048:12;49000:2;48990:78;:::o;49074:122::-;49147:24;49165:5;49147:24;:::i;:::-;49140:5;49137:35;49127:2;;49186:1;49183;49176:12;49127:2;49117:79;:::o

Swarm Source

ipfs://63582e92c947da28ccb9a54b02b3a64fa07169406bc0525bdc59fb23b2372a5a
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.