ERC-721
Overview
Max Total Supply
3 FORM
Holders
2
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 FORMLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Form
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-16 */ /** * For history and the expedited evolution of the collective consciousness */ // 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; } /** * @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); } } /* * @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 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 Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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 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 Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).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 ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * Full Form and metadata transparently queryable and composable on chain */ contract Form is ERC721Enumerable, ReentrancyGuard, Ownable { struct Canvas { string[17] line; string metaDesc; bool isPainted; } Canvas[] private form; uint256 private maxLineLen = 35; uint256 private maxMetaDescLen = 280; function addForm(Canvas memory inputCanvas) private { require(getNumForm() < 10000, "Form is final"); form.push(inputCanvas); } function getFormLine(uint256 tokenId, uint256 lineNum) public view returns (string memory) { require(tokenId > 0 && tokenId <= form.length, "Form has yet to enter the collective consciousness"); require(lineNum > 0 && lineNum <= 17, "An ideal form has a max of 17 lines"); string memory formLine = form[tokenId - 1].line[lineNum - 1]; return formLine; } function getForm(uint256 tokenId) public view returns (string memory) { require(tokenId > 0 && tokenId <= form.length, "Form has yet to enter the collective consciousness"); string memory fullForm = string(abi.encodePacked(getFormLine(tokenId,1), getFormLine(tokenId,2), getFormLine(tokenId,3), getFormLine(tokenId,4), getFormLine(tokenId,5), getFormLine(tokenId,6), getFormLine(tokenId,7))); fullForm = string(abi.encodePacked(fullForm, getFormLine(tokenId,8), getFormLine(tokenId,9), getFormLine(tokenId,10), getFormLine(tokenId,11), getFormLine(tokenId,12), getFormLine(tokenId,13))); fullForm = string(abi.encodePacked(fullForm, getFormLine(tokenId,14), getFormLine(tokenId,15), getFormLine(tokenId,16), getFormLine(tokenId,17))); return fullForm; } function getMetaDesc(uint256 tokenId) public view returns (string memory) { require(tokenId > 0 && tokenId <= form.length, "Form has yet to enter the collective consciousness"); return form[tokenId - 1].metaDesc; } // the current Form owner may always wield the metadata function setMetaDesc(uint256 tokenId, string memory metadataDescription) public { require(_msgSender() == super.ownerOf(tokenId), "It is another's impression to make"); require(bytes(metadataDescription).length <= maxMetaDescLen, string(abi.encodePacked("Metadata description may only contain ", toString(maxMetaDescLen), " bytes"))); form[tokenId - 1].metaDesc = metadataDescription; } function getNumForm() public view returns (uint256 numForms) { return form.length; } function isPainted(uint256 tokenId) public view returns (bool painted) { return form[tokenId - 1].isPainted; } // a subsequently immutable Form function mintForm(string[17] memory line, string memory metadataDescription) public nonReentrant onlyOwner { require(bytes(line[0]).length <= maxLineLen && bytes(line[1]).length <= maxLineLen && bytes(line[2]).length <= maxLineLen && bytes(line[3]).length <= maxLineLen && bytes(line[4]).length <= maxLineLen && bytes(line[5]).length <= maxLineLen && bytes(line[6]).length <= maxLineLen && bytes(line[7]).length <= maxLineLen && bytes(line[8]).length <= maxLineLen && bytes(line[9]).length <= maxLineLen && bytes(line[10]).length <= maxLineLen && bytes(line[11]).length <= maxLineLen && bytes(line[12]).length <= maxLineLen && bytes(line[13]).length <= maxLineLen && bytes(line[14]).length <= maxLineLen && bytes(line[15]).length <= maxLineLen && bytes(line[16]).length <= maxLineLen, string(abi.encodePacked("Each line may only contain ", toString(maxLineLen), " bytes"))); require(bytes(metadataDescription).length <= maxMetaDescLen, string(abi.encodePacked("Metadata description may only contain ", toString(maxMetaDescLen), " bytes"))); _safeMint(_msgSender(), getNumForm() + 1); addForm(Canvas(line, metadataDescription, true)); } // a blank Canvas function mintCanvas(string memory metadataDescription) public nonReentrant onlyOwner { _safeMint(_msgSender(), form.length + 1); string[17] memory lines; Canvas memory inputCanvas = Canvas(lines, metadataDescription, false); addForm(inputCanvas); } /** one may paint a blank Canvas * with immutable ink * for history and the evolution of the collective consciousness */ function paintCanvas(uint256 tokenId, string[17] memory line, string memory metadataDescription) public nonReentrant { require(bytes(line[0]).length <= maxLineLen && bytes(line[1]).length <= maxLineLen && bytes(line[2]).length <= maxLineLen && bytes(line[3]).length <= maxLineLen && bytes(line[4]).length <= maxLineLen && bytes(line[5]).length <= maxLineLen && bytes(line[6]).length <= maxLineLen && bytes(line[7]).length <= maxLineLen && bytes(line[8]).length <= maxLineLen && bytes(line[9]).length <= maxLineLen && bytes(line[10]).length <= maxLineLen && bytes(line[11]).length <= maxLineLen && bytes(line[12]).length <= maxLineLen && bytes(line[13]).length <= maxLineLen && bytes(line[14]).length <= maxLineLen && bytes(line[15]).length <= maxLineLen && bytes(line[16]).length <= maxLineLen, string(abi.encodePacked("Each line may only contain ", toString(maxLineLen), " bytes"))); require(bytes(metadataDescription).length <= maxMetaDescLen, string(abi.encodePacked("Metadata description may only contain ", toString(maxMetaDescLen), " bytes"))); require(form[tokenId - 1].isPainted == false, "Form is no longer canvas"); require(_msgSender() == super.ownerOf(tokenId), "It is another's impression to make"); form[tokenId - 1].line = line; form[tokenId - 1].metaDesc = metadataDescription; form[tokenId - 1].isPainted = true; } // full Form and metadata exist composably on chain function tokenURI(uint256 tokenId) override public view returns (string memory) { string[35] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">'; parts[1] = getFormLine(tokenId, 1); parts[2] = '</text><text x="10" y="40" class="base">'; parts[3] = getFormLine(tokenId, 2); parts[4] = '</text><text x="10" y="60" class="base">'; parts[5] = getFormLine(tokenId, 3); parts[6] = '</text><text x="10" y="80" class="base">'; parts[7] = getFormLine(tokenId, 4); parts[8] = '</text><text x="10" y="100" class="base">'; parts[9] = getFormLine(tokenId, 5); parts[10] = '</text><text x="10" y="120" class="base">'; parts[11] = getFormLine(tokenId, 6); parts[12] = '</text><text x="10" y="140" class="base">'; parts[13] = getFormLine(tokenId, 7); parts[14] = '</text><text x="10" y="160" class="base">'; parts[15] = getFormLine(tokenId, 8); parts[16] = '</text><text x="10" y="180" class="base">'; parts[17] = getFormLine(tokenId, 9); parts[18] = '</text><text x="10" y="200" class="base">'; parts[19] = getFormLine(tokenId, 10); parts[20] = '</text><text x="10" y="220" class="base">'; parts[21] = getFormLine(tokenId, 11); parts[22] = '</text><text x="10" y="240" class="base">'; parts[23] = getFormLine(tokenId, 12); parts[24] = '</text><text x="10" y="260" class="base">'; parts[25] = getFormLine(tokenId, 13); parts[26] = '</text><text x="10" y="280" class="base">'; parts[27] = getFormLine(tokenId, 14); parts[28] = '</text><text x="10" y="300" class="base">'; parts[29] = getFormLine(tokenId, 15); parts[30] = '</text><text x="10" y="320" class="base">'; parts[31] = getFormLine(tokenId, 16); parts[32] = '</text><text x="10" y="340" class="base">'; parts[33] = getFormLine(tokenId, 17); parts[34] = '</text></svg>'; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8])); output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16])); output = string(abi.encodePacked(output, parts[17], parts[18], parts[19], parts[20], parts[21], parts[22], parts[23], parts[24])); output = string(abi.encodePacked(output, parts[25], parts[26], parts[27], parts[28], parts[29], parts[30], parts[31], parts[32])); output = string(abi.encodePacked(output, parts[33], parts[34])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Form #', toString(tokenId), '", "description": "', getMetaDesc(tokenId), '", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT license // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } constructor() ERC721("Form", "FORM") Ownable() {} } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getForm","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"lineNum","type":"uint256"}],"name":"getFormLine","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMetaDesc","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumForm","outputs":[{"internalType":"uint256","name":"numForms","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isPainted","outputs":[{"internalType":"bool","name":"painted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"metadataDescription","type":"string"}],"name":"mintCanvas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[17]","name":"line","type":"string[17]"},{"internalType":"string","name":"metadataDescription","type":"string"}],"name":"mintForm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string[17]","name":"line","type":"string[17]"},{"internalType":"string","name":"metadataDescription","type":"string"}],"name":"paintCanvas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"metadataDescription","type":"string"}],"name":"setMetaDesc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526023600d55610118600e553480156200001c57600080fd5b5060405180604001604052806004815260200163466f726d60e01b81525060405180604001604052806004815260200163464f524d60e01b81525081600090805190602001906200006f929190620000f0565b50805162000085906001906020840190620000f0565b50506001600a555062000098336200009e565b620001d3565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fe9062000196565b90600052602060002090601f0160209004810192826200012257600085556200016d565b82601f106200013d57805160ff19168380011785556200016d565b828001600101855582156200016d579182015b828111156200016d57825182559160200191906001019062000150565b506200017b9291506200017f565b5090565b5b808211156200017b576000815560010162000180565b600181811c90821680620001ab57607f821691505b60208210811415620001cd57634e487b7160e01b600052602260045260246000fd5b50919050565b61396780620001e36000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a83c55ac11610097578063e985e9c511610071578063e985e9c5146103a9578063eafd53da146103e5578063ef9c8f75146103f8578063f2fde38b1461040057600080fd5b8063a83c55ac14610370578063b88d4fde14610383578063c87b56dd1461039657600080fd5b80638bd34766116100d35780638bd34766146103315780638da5cb5b1461034457806395d89b4114610355578063a22cb4651461035d57600080fd5b80636352211e1461030357806370a0823114610316578063715018a61461032957600080fd5b806323b872dd1161016657806347600c9a1161014057806347600c9a146102b7578063479fa2c3146102ca5780634f6ccce7146102dd57806361c3d296146102f057600080fd5b806323b872dd1461027e5780632f745c591461029157806342842e0e146102a457600080fd5b80630868b6a7116101a25780630868b6a714610231578063095ea7b314610244578063132d71871461025957806318160ddd1461026c57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004612ce8565b610413565b60405190151581526020015b60405180910390f35b6101f961043e565b6040516101e89190613261565b610219610214366004612d53565b6104d0565b6040516001600160a01b0390911681526020016101e8565b6101dc61023f366004612d53565b61056a565b610257610252366004612c5e565b6105b4565b005b610257610267366004612d20565b6106ca565b6008545b6040519081526020016101e8565b61025761028c366004612b70565b61076b565b61027061029f366004612c5e565b61079c565b6102576102b2366004612b70565b610832565b6102576102c5366004612c87565b61084d565b6101f96102d8366004612d53565b610aba565b6102706102eb366004612d53565b610c22565b6101f96102fe366004612e10565b610cc3565b610219610311366004612d53565b610e55565b610270610324366004612b24565b610ecc565b610257610f53565b61025761033f366004612d6b565b610f89565b600b546001600160a01b0316610219565b6101f9611345565b61025761036b366004612c24565b611354565b61025761037e366004612dd5565b611419565b610257610391366004612bab565b6114f2565b6101f96103a4366004612d53565b61152a565b6101dc6103b7366004612b3e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f96103f3366004612d53565b611a68565b600c54610270565b61025761040e366004612b24565b611b64565b60006001600160e01b0319821663780e9d6360e01b1480610438575061043882611bff565b92915050565b60606000805461044d906134a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610479906134a5565b80156104c65780601f1061049b576101008083540402835291602001916104c6565b820191906000526020600020905b8154815290600101906020018083116104a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661054e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000600c610579600184613462565b8154811061059757634e487b7160e01b600052603260045260246000fd5b600091825260209091206012601390920201015460ff1692915050565b60006105bf82610e55565b9050806001600160a01b0316836001600160a01b0316141561062d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610545565b336001600160a01b0382161480610649575061064981336103b7565b6106bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610545565b6106c58383611c4f565b505050565b6002600a5414156106ed5760405162461bcd60e51b8152600401610545906133e0565b6002600a55600b546001600160a01b0316331461071c5760405162461bcd60e51b81526004016105459061335a565b61073333600c5461072e906001613417565b611cbd565b61073b612858565b604080516060810182528281526020810184905260009181019190915261076181611cdb565b50506001600a5550565b6107753382611da3565b6107915760405162461bcd60e51b81526004016105459061338f565b6106c5838383611e9a565b60006107a783610ecc565b82106108095760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610545565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106c5838383604051806020016040528060008152506114f2565b6002600a5414156108705760405162461bcd60e51b8152600401610545906133e0565b6002600a55600b546001600160a01b0316331461089f5760405162461bcd60e51b81526004016105459061335a565b600d54825151118015906108ba5750600d5460208301515111155b80156108cd5750600d5460408301515111155b80156108e05750600d5460608301515111155b80156108f35750600d5460808301515111155b80156109065750600d5460a08301515111155b80156109195750600d5460c08301515111155b801561092c5750600d5460e08301515111155b80156109405750600d546101008301515111155b80156109545750600d546101208301515111155b80156109685750600d546101408301515111155b801561097c5750600d546101608301515111155b80156109905750600d546101808301515111155b80156109a45750600d546101a08301515111155b80156109b85750600d546101c08301515111155b80156109cc5750600d546101e08301515111155b80156109e05750600d546102008301515111155b6109eb600d54612045565b6040516020016109fb91906131cf565b60405160208183030381529060405290610a285760405162461bcd60e51b81526004016105459190613261565b50600e5481511115610a3b600e54612045565b604051602001610a4b9190613126565b60405160208183030381529060405290610a785760405162461bcd60e51b81526004016105459190613261565b50610a8b33600c5461072e906001613417565b610ab1604051806060016040528084815260200183815260200160011515815250611cdb565b50506001600a55565b6060600082118015610ace5750600c548211155b610aea5760405162461bcd60e51b815260040161054590613308565b6000610af7836001610cc3565b610b02846002610cc3565b610b0d856003610cc3565b610b18866004610cc3565b610b23876005610cc3565b610b2e886006610cc3565b610b39896007610cc3565b604051602001610b4f9796959493929190612f0b565b604051602081830303815290604052905080610b6c846008610cc3565b610b77856009610cc3565b610b8286600a610cc3565b610b8d87600b610cc3565b610b9888600c610cc3565b610ba389600d610cc3565b604051602001610bb99796959493929190612f0b565b604051602081830303815290604052905080610bd684600e610cc3565b610be185600f610cc3565b610bec866010610cc3565b610bf7876011610cc3565b604051602001610c0b959493929190612ea0565b60408051601f198184030181529190529392505050565b6000610c2d60085490565b8210610c905760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610545565b60088281548110610cb157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6060600083118015610cd75750600c548311155b610cf35760405162461bcd60e51b815260040161054590613308565b600082118015610d04575060118211155b610d5c5760405162461bcd60e51b815260206004820152602360248201527f416e20696465616c20666f726d206861732061206d6178206f66203137206c696044820152626e657360e81b6064820152608401610545565b6000600c610d6b600186613462565b81548110610d8957634e487b7160e01b600052603260045260246000fd5b60009182526020909120601390910201610da4600185613462565b60118110610dc257634e487b7160e01b600052603260045260246000fd5b018054610dce906134a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfa906134a5565b8015610e475780601f10610e1c57610100808354040283529160200191610e47565b820191906000526020600020905b815481529060010190602001808311610e2a57829003601f168201915b509398975050505050505050565b6000818152600260205260408120546001600160a01b0316806104385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610545565b60006001600160a01b038216610f375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610545565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016105459061335a565b610f87600061215f565b565b6002600a541415610fac5760405162461bcd60e51b8152600401610545906133e0565b6002600a55600d5482515111801590610fcc5750600d5460208301515111155b8015610fdf5750600d5460408301515111155b8015610ff25750600d5460608301515111155b80156110055750600d5460808301515111155b80156110185750600d5460a08301515111155b801561102b5750600d5460c08301515111155b801561103e5750600d5460e08301515111155b80156110525750600d546101008301515111155b80156110665750600d546101208301515111155b801561107a5750600d546101408301515111155b801561108e5750600d546101608301515111155b80156110a25750600d546101808301515111155b80156110b65750600d546101a08301515111155b80156110ca5750600d546101c08301515111155b80156110de5750600d546101e08301515111155b80156110f25750600d546102008301515111155b6110fd600d54612045565b60405160200161110d91906131cf565b6040516020818303038152906040529061113a5760405162461bcd60e51b81526004016105459190613261565b50600e548151111561114d600e54612045565b60405160200161115d9190613126565b6040516020818303038152906040529061118a5760405162461bcd60e51b81526004016105459190613261565b50600c611198600185613462565b815481106111b657634e487b7160e01b600052603260045260246000fd5b600091825260209091206012601390920201015460ff161561121a5760405162461bcd60e51b815260206004820152601860248201527f466f726d206973206e6f206c6f6e6765722063616e76617300000000000000006044820152606401610545565b61122383610e55565b6001600160a01b0316336001600160a01b0316146112535760405162461bcd60e51b8152600401610545906132c6565b81600c611261600186613462565b8154811061127f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912061129b92601390920201906011612880565b5080600c6112aa600186613462565b815481106112c857634e487b7160e01b600052603260045260246000fd5b906000526020600020906013020160110190805190602001906112ec9291906128d0565b506001600c6112fb8286613462565b8154811061131957634e487b7160e01b600052603260045260246000fd5b60009182526020909120601390910201601201805460ff191691151591909117905550506001600a5550565b60606001805461044d906134a5565b6001600160a01b0382163314156113ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610545565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61142282610e55565b6001600160a01b0316336001600160a01b0316146114525760405162461bcd60e51b8152600401610545906132c6565b600e5481511115611464600e54612045565b6040516020016114749190613126565b604051602081830303815290604052906114a15760405162461bcd60e51b81526004016105459190613261565b5080600c6114b0600185613462565b815481106114ce57634e487b7160e01b600052603260045260246000fd5b906000526020600020906013020160110190805190602001906106c59291906128d0565b6114fc3383611da3565b6115185760405162461bcd60e51b81526004016105459061338f565b611524848484846121b1565b50505050565b6060611534612950565b60405180610120016040528060fd815260200161370060fd9139815261155b836001610cc3565b81600160200201819052506040518060600160405280602881526020016138b860289139604082015261158f836002610cc3565b6060808301919091526040805191820190526028808252613591602083013960808201526115be836003610cc3565b60a082015260408051606081019091526028808252613634602083013960c08201526115eb836004610cc3565b60e08201526040805160608101909152602980825261365c6020830139610100820152611619836005610cc3565b6101208201526040805160608101909152602980825261360b6020830139610140820152611648836006610cc3565b610160820152604080516060810190915260298082526137fd6020830139610180820152611677836007610cc3565b6101a0820152604080516060810190915260298082526135e260208301396101c08201526116a6836008610cc3565b6101e0820152604080516060810190915260298082526138e060208301396102008201526116d5836009610cc3565b61022082015260408051606081019091526029808252613685602083013961024082015261170483600a610cc3565b610260820152604080516060810190915260298082526135b9602083013961028082015261173383600b610cc3565b6102a0820152604080516060810190915260298082526136ae60208301396102c082015261176283600c610cc3565b6102e082015260408051606081019091526029808252613909602083013961030082015261179183600d610cc3565b6103208201526040805160608101909152602980825261388f60208301396103408201526117c083600e610cc3565b610360820152604080516060810190915260298082526136d760208301396103808201526117ef83600f610cc3565b6103a08201526040805160608101909152602980825261356860208301396103c082015261181e836010610cc3565b6103e082015260408051606081019091526029808252613866602083013961040082015261184d836011610cc3565b610420820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610440840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a6118bd9a909101612f9d565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950611910988a9890602001612f9d565b60408051808303601f19018152908290526102208401516102408501516102608601516102808701516102a08801516102c08901516102e08a01516103008b0151979950611963988a9890602001612f9d565b60408051601f19818403018152908290526103208401516103408501516103608601516103808701516103a08801516103c08901516103e08a01516104008b01519799506119b6988a9890602001612f9d565b60408051808303601f19018152908290526104208401516104408501519193506119e592849290602001612e5d565b60405160208183030381529060405290506000611a3c611a0486612045565b611a0d87611a68565b611a16856121e4565b604051602001611a289392919061305d565b6040516020818303038152906040526121e4565b905080604051602001611a4f919061318a565b60408051601f1981840301815291905295945050505050565b6060600082118015611a7c5750600c548211155b611a985760405162461bcd60e51b815260040161054590613308565b600c611aa5600184613462565b81548110611ac357634e487b7160e01b600052603260045260246000fd5b90600052602060002090601302016011018054611adf906134a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0b906134a5565b8015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b50505050509050919050565b600b546001600160a01b03163314611b8e5760405162461bcd60e51b81526004016105459061335a565b6001600160a01b038116611bf35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610545565b611bfc8161215f565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c3057506001600160e01b03198216635b5e139f60e01b145b8061043857506301ffc9a760e01b6001600160e01b0319831614610438565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c8482610e55565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611cd7828260405180602001604052806000815250612358565b5050565b612710611ce7600c5490565b10611d245760405162461bcd60e51b815260206004820152600d60248201526c119bdc9b481a5cc8199a5b985b609a1b6044820152606401610545565b600c8054600181018255600091909152815182916013027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70190611d6b9082906011612880565b506020828101518051611d8492601185019201906128d0565b50604091909101516012909101805460ff191691151591909117905550565b6000818152600260205260408120546001600160a01b0316611e1c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610545565b6000611e2783610e55565b9050806001600160a01b0316846001600160a01b03161480611e625750836001600160a01b0316611e57846104d0565b6001600160a01b0316145b80611e9257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ead82610e55565b6001600160a01b031614611f155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610545565b6001600160a01b038216611f775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610545565b611f8283838361238b565b611f8d600082611c4f565b6001600160a01b0383166000908152600360205260408120805460019290611fb6908490613462565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fe4908490613417565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816120695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612093578061207d816134e0565b915061208c9050600a8361342f565b915061206d565b60008167ffffffffffffffff8111156120bc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e6576020820181803683370190505b5090505b8415611e92576120fb600183613462565b9150612108600a866134fb565b612113906030613417565b60f81b81838151811061213657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612158600a8661342f565b94506120ea565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6121bc848484611e9a565b6121c884848484612443565b6115245760405162461bcd60e51b815260040161054590613274565b805160609080612204575050604080516020810190915260008152919050565b60006003612213836002613417565b61221d919061342f565b612228906004613443565b90506000612237826020613417565b67ffffffffffffffff81111561225d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612287576020820181803683370190505b5090506000604051806060016040528060408152602001613826604091399050600181016020830160005b86811015612313576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016122b2565b50600386066001811461232d576002811461233e5761234a565b613d3d60f01b60011983015261234a565b603d60f81b6000198301525b505050918152949350505050565b6123628383612550565b61236f6000848484612443565b6106c55760405162461bcd60e51b815260040161054590613274565b6001600160a01b0383166123e6576123e181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612409565b816001600160a01b0316836001600160a01b03161461240957612409838261269e565b6001600160a01b038216612420576106c58161273b565b826001600160a01b0316826001600160a01b0316146106c5576106c58282612814565b60006001600160a01b0384163b1561254557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612487903390899088908890600401613224565b602060405180830381600087803b1580156124a157600080fd5b505af19250505080156124d1575060408051601f3d908101601f191682019092526124ce91810190612d04565b60015b61252b573d8080156124ff576040519150601f19603f3d011682016040523d82523d6000602084013e612504565b606091505b5080516125235760405162461bcd60e51b815260040161054590613274565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e92565b506001949350505050565b6001600160a01b0382166125a65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610545565b6000818152600260205260409020546001600160a01b03161561260b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610545565b6126176000838361238b565b6001600160a01b0382166000908152600360205260408120805460019290612640908490613417565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126ab84610ecc565b6126b59190613462565b600083815260076020526040902054909150808214612708576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061274d90600190613462565b6000838152600960205260408120546008805493945090928490811061278357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106127b257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127f857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061281f83610ecc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061022001604052806011905b60608152602001906001900390816128685790505090565b82601181019282156128c0579160200282015b828111156128c057825180516128b09184916020909101906128d0565b5091602001919060010190612893565b506128cc92915061296b565b5090565b8280546128dc906134a5565b90600052602060002090601f0160209004810192826128fe5760008555612944565b82601f1061291757805160ff1916838001178555612944565b82800160010185558215612944579182015b82811115612944578251825591602001919060010190612929565b506128cc929150612988565b60408051610460810190915260608152602260208201612868565b808211156128cc57600061297f828261299d565b5060010161296b565b5b808211156128cc5760008155600101612989565b5080546129a9906134a5565b6000825580601f106129b9575050565b601f016020900490600052602060002090810190611bfc9190612988565b600067ffffffffffffffff808411156129f2576129f261353b565b604051601f8501601f19908116603f01168101908282118183101715612a1a57612a1a61353b565b81604052809350858152868686011115612a3357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a6457600080fd5b919050565b600082601f830112612a79578081fd5b60405161022080820167ffffffffffffffff8382108183111715612a9f57612a9f61353b565b8160405283915085878488011115612ab5578586fd5b8593505b6011841015612af257803582811115612ad0578687fd5b612adc89828a01612afe565b8452506001939093019260209283019201612ab9565b50929695505050505050565b600082601f830112612b0e578081fd5b612b1d838335602085016129d7565b9392505050565b600060208284031215612b35578081fd5b612b1d82612a4d565b60008060408385031215612b50578081fd5b612b5983612a4d565b9150612b6760208401612a4d565b90509250929050565b600080600060608486031215612b84578081fd5b612b8d84612a4d565b9250612b9b60208501612a4d565b9150604084013590509250925092565b60008060008060808587031215612bc0578081fd5b612bc985612a4d565b9350612bd760208601612a4d565b925060408501359150606085013567ffffffffffffffff811115612bf9578182fd5b8501601f81018713612c09578182fd5b612c18878235602084016129d7565b91505092959194509250565b60008060408385031215612c36578182fd5b612c3f83612a4d565b915060208301358015158114612c53578182fd5b809150509250929050565b60008060408385031215612c70578182fd5b612c7983612a4d565b946020939093013593505050565b60008060408385031215612c99578182fd5b823567ffffffffffffffff80821115612cb0578384fd5b612cbc86838701612a69565b93506020850135915080821115612cd1578283fd5b50612cde85828601612afe565b9150509250929050565b600060208284031215612cf9578081fd5b8135612b1d81613551565b600060208284031215612d15578081fd5b8151612b1d81613551565b600060208284031215612d31578081fd5b813567ffffffffffffffff811115612d47578182fd5b611e9284828501612afe565b600060208284031215612d64578081fd5b5035919050565b600080600060608486031215612d7f578283fd5b83359250602084013567ffffffffffffffff80821115612d9d578384fd5b612da987838801612a69565b93506040860135915080821115612dbe578283fd5b50612dcb86828701612afe565b9150509250925092565b60008060408385031215612de7578182fd5b82359150602083013567ffffffffffffffff811115612e04578182fd5b612cde85828601612afe565b60008060408385031215612e22578182fd5b50508035926020909101359150565b60008151808452612e49816020860160208601613479565b601f01601f19169290920160200192915050565b60008451612e6f818460208901613479565b845190830190612e83818360208901613479565b8451910190612e96818360208801613479565b0195945050505050565b60008651612eb2818460208b01613479565b865190830190612ec6818360208b01613479565b8651910190612ed9818360208a01613479565b8551910190612eec818360208901613479565b8451910190612eff818360208801613479565b01979650505050505050565b600088516020612f1e8285838e01613479565b895191840191612f318184848e01613479565b8951920191612f438184848d01613479565b8851920191612f558184848c01613479565b8751920191612f678184848b01613479565b8651920191612f798184848a01613479565b8551920191612f8b8184848901613479565b919091019a9950505050505050505050565b60008a51612faf818460208f01613479565b8a51612fc18183860160208f01613479565b8a519184010190612fd6818360208e01613479565b8951612fe88183850160208e01613479565b8951929091010190612ffe818360208c01613479565b87516130108183850160208c01613479565b8751929091010190613026818360208a01613479565b8551910190613039818360208901613479565b845161304b8183850160208901613479565b9101019b9a5050505050505050505050565b6f7b226e616d65223a2022466f726d202360801b81528351600090613089816010850160208901613479565b72111610113232b9b1b934b83a34b7b7111d101160691b60109184019182015284516130bc816023840160208901613479565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b602392909101918201526618985cd94d8d0b60ca1b6043820152835161310a81604a840160208801613479565b61227d60f01b604a9290910191820152604c0195945050505050565b7f4d65746164617461206465736372697074696f6e206d6179206f6e6c7920636f8152650373a30b4b7160d51b60208201526000825161316d816026850160208701613479565b6520627974657360d01b6026939091019283015250602c01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516131c281601d850160208701613479565b91909101601d0192915050565b7f45616368206c696e65206d6179206f6e6c7920636f6e7461696e20000000000081526000825161320781601b850160208701613479565b6520627974657360d01b601b939091019283015250602101919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061325790830184612e31565b9695505050505050565b602081526000612b1d6020830184612e31565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f497420697320616e6f74686572277320696d7072657373696f6e20746f206d616040820152616b6560f01b606082015260800190565b60208082526032908201527f466f726d206861732079657420746f20656e7465722074686520636f6c6c65636040820152717469766520636f6e7363696f75736e65737360701b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561342a5761342a61350f565b500190565b60008261343e5761343e613525565b500490565b600081600019048311821515161561345d5761345d61350f565b500290565b6000828210156134745761347461350f565b500390565b60005b8381101561349457818101518382015260200161347c565b838111156115245750506000910152565b600181811c908216806134b957607f821691505b602082108114156134da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134f4576134f461350f565b5060010190565b60008261350a5761350a613525565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bfc57600080fdfe3c2f746578743e3c7465787420783d2231302220793d223332302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223230302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223330302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d223334302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223138302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223236302220636c6173733d2262617365223ea26469706673582212205196e53c674f89b1b4dd1644d641f2319ef45105a73573e87652a40a7610a89a64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063a83c55ac11610097578063e985e9c511610071578063e985e9c5146103a9578063eafd53da146103e5578063ef9c8f75146103f8578063f2fde38b1461040057600080fd5b8063a83c55ac14610370578063b88d4fde14610383578063c87b56dd1461039657600080fd5b80638bd34766116100d35780638bd34766146103315780638da5cb5b1461034457806395d89b4114610355578063a22cb4651461035d57600080fd5b80636352211e1461030357806370a0823114610316578063715018a61461032957600080fd5b806323b872dd1161016657806347600c9a1161014057806347600c9a146102b7578063479fa2c3146102ca5780634f6ccce7146102dd57806361c3d296146102f057600080fd5b806323b872dd1461027e5780632f745c591461029157806342842e0e146102a457600080fd5b80630868b6a7116101a25780630868b6a714610231578063095ea7b314610244578063132d71871461025957806318160ddd1461026c57600080fd5b806301ffc9a7146101c957806306fdde03146101f1578063081812fc14610206575b600080fd5b6101dc6101d7366004612ce8565b610413565b60405190151581526020015b60405180910390f35b6101f961043e565b6040516101e89190613261565b610219610214366004612d53565b6104d0565b6040516001600160a01b0390911681526020016101e8565b6101dc61023f366004612d53565b61056a565b610257610252366004612c5e565b6105b4565b005b610257610267366004612d20565b6106ca565b6008545b6040519081526020016101e8565b61025761028c366004612b70565b61076b565b61027061029f366004612c5e565b61079c565b6102576102b2366004612b70565b610832565b6102576102c5366004612c87565b61084d565b6101f96102d8366004612d53565b610aba565b6102706102eb366004612d53565b610c22565b6101f96102fe366004612e10565b610cc3565b610219610311366004612d53565b610e55565b610270610324366004612b24565b610ecc565b610257610f53565b61025761033f366004612d6b565b610f89565b600b546001600160a01b0316610219565b6101f9611345565b61025761036b366004612c24565b611354565b61025761037e366004612dd5565b611419565b610257610391366004612bab565b6114f2565b6101f96103a4366004612d53565b61152a565b6101dc6103b7366004612b3e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101f96103f3366004612d53565b611a68565b600c54610270565b61025761040e366004612b24565b611b64565b60006001600160e01b0319821663780e9d6360e01b1480610438575061043882611bff565b92915050565b60606000805461044d906134a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610479906134a5565b80156104c65780601f1061049b576101008083540402835291602001916104c6565b820191906000526020600020905b8154815290600101906020018083116104a957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661054e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000600c610579600184613462565b8154811061059757634e487b7160e01b600052603260045260246000fd5b600091825260209091206012601390920201015460ff1692915050565b60006105bf82610e55565b9050806001600160a01b0316836001600160a01b0316141561062d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610545565b336001600160a01b0382161480610649575061064981336103b7565b6106bb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610545565b6106c58383611c4f565b505050565b6002600a5414156106ed5760405162461bcd60e51b8152600401610545906133e0565b6002600a55600b546001600160a01b0316331461071c5760405162461bcd60e51b81526004016105459061335a565b61073333600c5461072e906001613417565b611cbd565b61073b612858565b604080516060810182528281526020810184905260009181019190915261076181611cdb565b50506001600a5550565b6107753382611da3565b6107915760405162461bcd60e51b81526004016105459061338f565b6106c5838383611e9a565b60006107a783610ecc565b82106108095760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610545565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106c5838383604051806020016040528060008152506114f2565b6002600a5414156108705760405162461bcd60e51b8152600401610545906133e0565b6002600a55600b546001600160a01b0316331461089f5760405162461bcd60e51b81526004016105459061335a565b600d54825151118015906108ba5750600d5460208301515111155b80156108cd5750600d5460408301515111155b80156108e05750600d5460608301515111155b80156108f35750600d5460808301515111155b80156109065750600d5460a08301515111155b80156109195750600d5460c08301515111155b801561092c5750600d5460e08301515111155b80156109405750600d546101008301515111155b80156109545750600d546101208301515111155b80156109685750600d546101408301515111155b801561097c5750600d546101608301515111155b80156109905750600d546101808301515111155b80156109a45750600d546101a08301515111155b80156109b85750600d546101c08301515111155b80156109cc5750600d546101e08301515111155b80156109e05750600d546102008301515111155b6109eb600d54612045565b6040516020016109fb91906131cf565b60405160208183030381529060405290610a285760405162461bcd60e51b81526004016105459190613261565b50600e5481511115610a3b600e54612045565b604051602001610a4b9190613126565b60405160208183030381529060405290610a785760405162461bcd60e51b81526004016105459190613261565b50610a8b33600c5461072e906001613417565b610ab1604051806060016040528084815260200183815260200160011515815250611cdb565b50506001600a55565b6060600082118015610ace5750600c548211155b610aea5760405162461bcd60e51b815260040161054590613308565b6000610af7836001610cc3565b610b02846002610cc3565b610b0d856003610cc3565b610b18866004610cc3565b610b23876005610cc3565b610b2e886006610cc3565b610b39896007610cc3565b604051602001610b4f9796959493929190612f0b565b604051602081830303815290604052905080610b6c846008610cc3565b610b77856009610cc3565b610b8286600a610cc3565b610b8d87600b610cc3565b610b9888600c610cc3565b610ba389600d610cc3565b604051602001610bb99796959493929190612f0b565b604051602081830303815290604052905080610bd684600e610cc3565b610be185600f610cc3565b610bec866010610cc3565b610bf7876011610cc3565b604051602001610c0b959493929190612ea0565b60408051601f198184030181529190529392505050565b6000610c2d60085490565b8210610c905760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610545565b60088281548110610cb157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6060600083118015610cd75750600c548311155b610cf35760405162461bcd60e51b815260040161054590613308565b600082118015610d04575060118211155b610d5c5760405162461bcd60e51b815260206004820152602360248201527f416e20696465616c20666f726d206861732061206d6178206f66203137206c696044820152626e657360e81b6064820152608401610545565b6000600c610d6b600186613462565b81548110610d8957634e487b7160e01b600052603260045260246000fd5b60009182526020909120601390910201610da4600185613462565b60118110610dc257634e487b7160e01b600052603260045260246000fd5b018054610dce906134a5565b80601f0160208091040260200160405190810160405280929190818152602001828054610dfa906134a5565b8015610e475780601f10610e1c57610100808354040283529160200191610e47565b820191906000526020600020905b815481529060010190602001808311610e2a57829003601f168201915b509398975050505050505050565b6000818152600260205260408120546001600160a01b0316806104385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610545565b60006001600160a01b038216610f375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610545565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016105459061335a565b610f87600061215f565b565b6002600a541415610fac5760405162461bcd60e51b8152600401610545906133e0565b6002600a55600d5482515111801590610fcc5750600d5460208301515111155b8015610fdf5750600d5460408301515111155b8015610ff25750600d5460608301515111155b80156110055750600d5460808301515111155b80156110185750600d5460a08301515111155b801561102b5750600d5460c08301515111155b801561103e5750600d5460e08301515111155b80156110525750600d546101008301515111155b80156110665750600d546101208301515111155b801561107a5750600d546101408301515111155b801561108e5750600d546101608301515111155b80156110a25750600d546101808301515111155b80156110b65750600d546101a08301515111155b80156110ca5750600d546101c08301515111155b80156110de5750600d546101e08301515111155b80156110f25750600d546102008301515111155b6110fd600d54612045565b60405160200161110d91906131cf565b6040516020818303038152906040529061113a5760405162461bcd60e51b81526004016105459190613261565b50600e548151111561114d600e54612045565b60405160200161115d9190613126565b6040516020818303038152906040529061118a5760405162461bcd60e51b81526004016105459190613261565b50600c611198600185613462565b815481106111b657634e487b7160e01b600052603260045260246000fd5b600091825260209091206012601390920201015460ff161561121a5760405162461bcd60e51b815260206004820152601860248201527f466f726d206973206e6f206c6f6e6765722063616e76617300000000000000006044820152606401610545565b61122383610e55565b6001600160a01b0316336001600160a01b0316146112535760405162461bcd60e51b8152600401610545906132c6565b81600c611261600186613462565b8154811061127f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912061129b92601390920201906011612880565b5080600c6112aa600186613462565b815481106112c857634e487b7160e01b600052603260045260246000fd5b906000526020600020906013020160110190805190602001906112ec9291906128d0565b506001600c6112fb8286613462565b8154811061131957634e487b7160e01b600052603260045260246000fd5b60009182526020909120601390910201601201805460ff191691151591909117905550506001600a5550565b60606001805461044d906134a5565b6001600160a01b0382163314156113ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610545565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61142282610e55565b6001600160a01b0316336001600160a01b0316146114525760405162461bcd60e51b8152600401610545906132c6565b600e5481511115611464600e54612045565b6040516020016114749190613126565b604051602081830303815290604052906114a15760405162461bcd60e51b81526004016105459190613261565b5080600c6114b0600185613462565b815481106114ce57634e487b7160e01b600052603260045260246000fd5b906000526020600020906013020160110190805190602001906106c59291906128d0565b6114fc3383611da3565b6115185760405162461bcd60e51b81526004016105459061338f565b611524848484846121b1565b50505050565b6060611534612950565b60405180610120016040528060fd815260200161370060fd9139815261155b836001610cc3565b81600160200201819052506040518060600160405280602881526020016138b860289139604082015261158f836002610cc3565b6060808301919091526040805191820190526028808252613591602083013960808201526115be836003610cc3565b60a082015260408051606081019091526028808252613634602083013960c08201526115eb836004610cc3565b60e08201526040805160608101909152602980825261365c6020830139610100820152611619836005610cc3565b6101208201526040805160608101909152602980825261360b6020830139610140820152611648836006610cc3565b610160820152604080516060810190915260298082526137fd6020830139610180820152611677836007610cc3565b6101a0820152604080516060810190915260298082526135e260208301396101c08201526116a6836008610cc3565b6101e0820152604080516060810190915260298082526138e060208301396102008201526116d5836009610cc3565b61022082015260408051606081019091526029808252613685602083013961024082015261170483600a610cc3565b610260820152604080516060810190915260298082526135b9602083013961028082015261173383600b610cc3565b6102a0820152604080516060810190915260298082526136ae60208301396102c082015261176283600c610cc3565b6102e082015260408051606081019091526029808252613909602083013961030082015261179183600d610cc3565b6103208201526040805160608101909152602980825261388f60208301396103408201526117c083600e610cc3565b610360820152604080516060810190915260298082526136d760208301396103808201526117ef83600f610cc3565b6103a08201526040805160608101909152602980825261356860208301396103c082015261181e836010610cc3565b6103e082015260408051606081019091526029808252613866602083013961040082015261184d836011610cc3565b610420820152604080518082018252600d81526c1e17ba32bc3a1f1e17b9bb339f60991b602080830191909152610440840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a6118bd9a909101612f9d565b60408051808303601f19018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950611910988a9890602001612f9d565b60408051808303601f19018152908290526102208401516102408501516102608601516102808701516102a08801516102c08901516102e08a01516103008b0151979950611963988a9890602001612f9d565b60408051601f19818403018152908290526103208401516103408501516103608601516103808701516103a08801516103c08901516103e08a01516104008b01519799506119b6988a9890602001612f9d565b60408051808303601f19018152908290526104208401516104408501519193506119e592849290602001612e5d565b60405160208183030381529060405290506000611a3c611a0486612045565b611a0d87611a68565b611a16856121e4565b604051602001611a289392919061305d565b6040516020818303038152906040526121e4565b905080604051602001611a4f919061318a565b60408051601f1981840301815291905295945050505050565b6060600082118015611a7c5750600c548211155b611a985760405162461bcd60e51b815260040161054590613308565b600c611aa5600184613462565b81548110611ac357634e487b7160e01b600052603260045260246000fd5b90600052602060002090601302016011018054611adf906134a5565b80601f0160208091040260200160405190810160405280929190818152602001828054611b0b906134a5565b8015611b585780601f10611b2d57610100808354040283529160200191611b58565b820191906000526020600020905b815481529060010190602001808311611b3b57829003601f168201915b50505050509050919050565b600b546001600160a01b03163314611b8e5760405162461bcd60e51b81526004016105459061335a565b6001600160a01b038116611bf35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610545565b611bfc8161215f565b50565b60006001600160e01b031982166380ac58cd60e01b1480611c3057506001600160e01b03198216635b5e139f60e01b145b8061043857506301ffc9a760e01b6001600160e01b0319831614610438565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611c8482610e55565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611cd7828260405180602001604052806000815250612358565b5050565b612710611ce7600c5490565b10611d245760405162461bcd60e51b815260206004820152600d60248201526c119bdc9b481a5cc8199a5b985b609a1b6044820152606401610545565b600c8054600181018255600091909152815182916013027fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70190611d6b9082906011612880565b506020828101518051611d8492601185019201906128d0565b50604091909101516012909101805460ff191691151591909117905550565b6000818152600260205260408120546001600160a01b0316611e1c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610545565b6000611e2783610e55565b9050806001600160a01b0316846001600160a01b03161480611e625750836001600160a01b0316611e57846104d0565b6001600160a01b0316145b80611e9257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ead82610e55565b6001600160a01b031614611f155760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610545565b6001600160a01b038216611f775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610545565b611f8283838361238b565b611f8d600082611c4f565b6001600160a01b0383166000908152600360205260408120805460019290611fb6908490613462565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fe4908490613417565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060816120695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612093578061207d816134e0565b915061208c9050600a8361342f565b915061206d565b60008167ffffffffffffffff8111156120bc57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120e6576020820181803683370190505b5090505b8415611e92576120fb600183613462565b9150612108600a866134fb565b612113906030613417565b60f81b81838151811061213657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612158600a8661342f565b94506120ea565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6121bc848484611e9a565b6121c884848484612443565b6115245760405162461bcd60e51b815260040161054590613274565b805160609080612204575050604080516020810190915260008152919050565b60006003612213836002613417565b61221d919061342f565b612228906004613443565b90506000612237826020613417565b67ffffffffffffffff81111561225d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612287576020820181803683370190505b5090506000604051806060016040528060408152602001613826604091399050600181016020830160005b86811015612313576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016122b2565b50600386066001811461232d576002811461233e5761234a565b613d3d60f01b60011983015261234a565b603d60f81b6000198301525b505050918152949350505050565b6123628383612550565b61236f6000848484612443565b6106c55760405162461bcd60e51b815260040161054590613274565b6001600160a01b0383166123e6576123e181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612409565b816001600160a01b0316836001600160a01b03161461240957612409838261269e565b6001600160a01b038216612420576106c58161273b565b826001600160a01b0316826001600160a01b0316146106c5576106c58282612814565b60006001600160a01b0384163b1561254557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612487903390899088908890600401613224565b602060405180830381600087803b1580156124a157600080fd5b505af19250505080156124d1575060408051601f3d908101601f191682019092526124ce91810190612d04565b60015b61252b573d8080156124ff576040519150601f19603f3d011682016040523d82523d6000602084013e612504565b606091505b5080516125235760405162461bcd60e51b815260040161054590613274565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e92565b506001949350505050565b6001600160a01b0382166125a65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610545565b6000818152600260205260409020546001600160a01b03161561260b5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610545565b6126176000838361238b565b6001600160a01b0382166000908152600360205260408120805460019290612640908490613417565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016126ab84610ecc565b6126b59190613462565b600083815260076020526040902054909150808214612708576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061274d90600190613462565b6000838152600960205260408120546008805493945090928490811061278357634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106127b257634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127f857634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061281f83610ecc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6040518061022001604052806011905b60608152602001906001900390816128685790505090565b82601181019282156128c0579160200282015b828111156128c057825180516128b09184916020909101906128d0565b5091602001919060010190612893565b506128cc92915061296b565b5090565b8280546128dc906134a5565b90600052602060002090601f0160209004810192826128fe5760008555612944565b82601f1061291757805160ff1916838001178555612944565b82800160010185558215612944579182015b82811115612944578251825591602001919060010190612929565b506128cc929150612988565b60408051610460810190915260608152602260208201612868565b808211156128cc57600061297f828261299d565b5060010161296b565b5b808211156128cc5760008155600101612989565b5080546129a9906134a5565b6000825580601f106129b9575050565b601f016020900490600052602060002090810190611bfc9190612988565b600067ffffffffffffffff808411156129f2576129f261353b565b604051601f8501601f19908116603f01168101908282118183101715612a1a57612a1a61353b565b81604052809350858152868686011115612a3357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612a6457600080fd5b919050565b600082601f830112612a79578081fd5b60405161022080820167ffffffffffffffff8382108183111715612a9f57612a9f61353b565b8160405283915085878488011115612ab5578586fd5b8593505b6011841015612af257803582811115612ad0578687fd5b612adc89828a01612afe565b8452506001939093019260209283019201612ab9565b50929695505050505050565b600082601f830112612b0e578081fd5b612b1d838335602085016129d7565b9392505050565b600060208284031215612b35578081fd5b612b1d82612a4d565b60008060408385031215612b50578081fd5b612b5983612a4d565b9150612b6760208401612a4d565b90509250929050565b600080600060608486031215612b84578081fd5b612b8d84612a4d565b9250612b9b60208501612a4d565b9150604084013590509250925092565b60008060008060808587031215612bc0578081fd5b612bc985612a4d565b9350612bd760208601612a4d565b925060408501359150606085013567ffffffffffffffff811115612bf9578182fd5b8501601f81018713612c09578182fd5b612c18878235602084016129d7565b91505092959194509250565b60008060408385031215612c36578182fd5b612c3f83612a4d565b915060208301358015158114612c53578182fd5b809150509250929050565b60008060408385031215612c70578182fd5b612c7983612a4d565b946020939093013593505050565b60008060408385031215612c99578182fd5b823567ffffffffffffffff80821115612cb0578384fd5b612cbc86838701612a69565b93506020850135915080821115612cd1578283fd5b50612cde85828601612afe565b9150509250929050565b600060208284031215612cf9578081fd5b8135612b1d81613551565b600060208284031215612d15578081fd5b8151612b1d81613551565b600060208284031215612d31578081fd5b813567ffffffffffffffff811115612d47578182fd5b611e9284828501612afe565b600060208284031215612d64578081fd5b5035919050565b600080600060608486031215612d7f578283fd5b83359250602084013567ffffffffffffffff80821115612d9d578384fd5b612da987838801612a69565b93506040860135915080821115612dbe578283fd5b50612dcb86828701612afe565b9150509250925092565b60008060408385031215612de7578182fd5b82359150602083013567ffffffffffffffff811115612e04578182fd5b612cde85828601612afe565b60008060408385031215612e22578182fd5b50508035926020909101359150565b60008151808452612e49816020860160208601613479565b601f01601f19169290920160200192915050565b60008451612e6f818460208901613479565b845190830190612e83818360208901613479565b8451910190612e96818360208801613479565b0195945050505050565b60008651612eb2818460208b01613479565b865190830190612ec6818360208b01613479565b8651910190612ed9818360208a01613479565b8551910190612eec818360208901613479565b8451910190612eff818360208801613479565b01979650505050505050565b600088516020612f1e8285838e01613479565b895191840191612f318184848e01613479565b8951920191612f438184848d01613479565b8851920191612f558184848c01613479565b8751920191612f678184848b01613479565b8651920191612f798184848a01613479565b8551920191612f8b8184848901613479565b919091019a9950505050505050505050565b60008a51612faf818460208f01613479565b8a51612fc18183860160208f01613479565b8a519184010190612fd6818360208e01613479565b8951612fe88183850160208e01613479565b8951929091010190612ffe818360208c01613479565b87516130108183850160208c01613479565b8751929091010190613026818360208a01613479565b8551910190613039818360208901613479565b845161304b8183850160208901613479565b9101019b9a5050505050505050505050565b6f7b226e616d65223a2022466f726d202360801b81528351600090613089816010850160208901613479565b72111610113232b9b1b934b83a34b7b7111d101160691b60109184019182015284516130bc816023840160208901613479565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b602392909101918201526618985cd94d8d0b60ca1b6043820152835161310a81604a840160208801613479565b61227d60f01b604a9290910191820152604c0195945050505050565b7f4d65746164617461206465736372697074696f6e206d6179206f6e6c7920636f8152650373a30b4b7160d51b60208201526000825161316d816026850160208701613479565b6520627974657360d01b6026939091019283015250602c01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516131c281601d850160208701613479565b91909101601d0192915050565b7f45616368206c696e65206d6179206f6e6c7920636f6e7461696e20000000000081526000825161320781601b850160208701613479565b6520627974657360d01b601b939091019283015250602101919050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061325790830184612e31565b9695505050505050565b602081526000612b1d6020830184612e31565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526022908201527f497420697320616e6f74686572277320696d7072657373696f6e20746f206d616040820152616b6560f01b606082015260800190565b60208082526032908201527f466f726d206861732079657420746f20656e7465722074686520636f6c6c65636040820152717469766520636f6e7363696f75736e65737360701b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000821982111561342a5761342a61350f565b500190565b60008261343e5761343e613525565b500490565b600081600019048311821515161561345d5761345d61350f565b500290565b6000828210156134745761347461350f565b500390565b60005b8381101561349457818101518382015260200161347c565b838111156115245750506000910152565b600181811c908216806134b957607f821691505b602082108114156134da57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134f4576134f461350f565b5060010190565b60008261350a5761350a613525565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611bfc57600080fdfe3c2f746578743e3c7465787420783d2231302220793d223332302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223230302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223330302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d223334302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223138302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223236302220636c6173733d2262617365223ea26469706673582212205196e53c674f89b1b4dd1644d641f2319ef45105a73573e87652a40a7610a89a64736f6c63430008040033
Deployed Bytecode Sourcemap
44671:10326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38438:224;;;;;;:::i;:::-;;:::i;:::-;;;16383:14:1;;16376:22;16358:41;;16346:2;16331:18;38438:224:0;;;;;;;;25552:100;;;:::i;:::-;;;;;;;:::i;27111:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;15681:32:1;;;15663:51;;15651:2;15636:18;27111:221:0;15618:102:1;47223:124:0;;;;;;:::i;:::-;;:::i;26634:411::-;;;;;;:::i;:::-;;:::i;:::-;;48657:289;;;;;;:::i;:::-;;:::i;39078:113::-;39166:10;:17;39078:113;;;25852:25:1;;;25840:2;25825:18;39078:113:0;25807:76:1;28001:339:0;;;;;;:::i;:::-;;:::i;38746:256::-;;;;;;:::i;:::-;;:::i;28411:185::-;;;;;;:::i;:::-;;:::i;47397:1225::-;;;;;;:::i;:::-;;:::i;45538:823::-;;;;;;:::i;:::-;;:::i;39268:233::-;;;;;;:::i;:::-;;:::i;45132:394::-;;;;;;:::i;:::-;;:::i;25246:239::-;;;;;;:::i;:::-;;:::i;24976:208::-;;;;;;:::i;:::-;;:::i;9944:94::-;;;:::i;49094:1449::-;;;;;;:::i;:::-;;:::i;9293:87::-;9366:6;;-1:-1:-1;;;;;9366:6:0;9293:87;;25721:104;;;:::i;27404:295::-;;;;;;:::i;:::-;;:::i;46683:418::-;;;;;;:::i;:::-;;:::i;28667:328::-;;;;;;:::i;:::-;;:::i;50608:3598::-;;;;;;:::i;:::-;;:::i;27770:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27891:25:0;;;27867:4;27891:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27770:164;46373:237;;;;;;:::i;:::-;;:::i;47113:98::-;47192:4;:11;47113:98;;10193:192;;;;;;:::i;:::-;;:::i;38438:224::-;38540:4;-1:-1:-1;;;;;;38564:50:0;;-1:-1:-1;;;38564:50:0;;:90;;;38618:36;38642:11;38618:23;:36::i;:::-;38557:97;38438:224;-1:-1:-1;;38438:224:0:o;25552:100::-;25606:13;25639:5;25632:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25552:100;:::o;27111:221::-;27187:7;30594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30594:16:0;27207:73;;;;-1:-1:-1;;;27207:73:0;;22727:2:1;27207:73:0;;;22709:21:1;22766:2;22746:18;;;22739:30;22805:34;22785:18;;;22778:62;-1:-1:-1;;;22856:18:1;;;22849:42;22908:19;;27207:73:0;;;;;;;;;-1:-1:-1;27300:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27300:24:0;;27111:221::o;47223:124::-;47280:12;47312:4;47317:11;47327:1;47317:7;:11;:::i;:::-;47312:17;;;;;;-1:-1:-1;;;47312:17:0;;;;;;;;;;;;;;;;;:27;:17;;;;;:27;;;;;47223:124;-1:-1:-1;;47223:124:0:o;26634:411::-;26715:13;26731:23;26746:7;26731:14;:23::i;:::-;26715:39;;26779:5;-1:-1:-1;;;;;26773:11:0;:2;-1:-1:-1;;;;;26773:11:0;;;26765:57;;;;-1:-1:-1;;;26765:57:0;;24315:2:1;26765:57:0;;;24297:21:1;24354:2;24334:18;;;24327:30;24393:34;24373:18;;;24366:62;-1:-1:-1;;;24444:18:1;;;24437:31;24485:19;;26765:57:0;24287:223:1;26765:57:0;8233:10;-1:-1:-1;;;;;26857:21:0;;;;:62;;-1:-1:-1;26882:37:0;26899:5;8233:10;27770:164;:::i;26882:37::-;26835:168;;;;-1:-1:-1;;;26835:168:0;;21120:2:1;26835:168:0;;;21102:21:1;21159:2;21139:18;;;21132:30;21198:34;21178:18;;;21171:62;21269:26;21249:18;;;21242:54;21313:19;;26835:168:0;21092:246:1;26835:168:0;27016:21;27025:2;27029:7;27016:8;:21::i;:::-;26634:411;;;:::o;48657:289::-;12232:1;12828:7;;:19;;12820:63;;;;-1:-1:-1;;;12820:63:0;;;;;;;:::i;:::-;12232:1;12961:7;:18;9366:6;;-1:-1:-1;;;;;9366:6:0;8233:10;9513:23:::1;9505:68;;;;-1:-1:-1::0;;;9505:68:0::1;;;;;;;:::i;:::-;48753:40:::2;8233:10:::0;48777:4:::2;:11:::0;:15:::2;::::0;48791:1:::2;48777:15;:::i;:::-;48753:9;:40::i;:::-;48804:23;;:::i;:::-;48866:41;::::0;;::::2;::::0;::::2;::::0;;;;;::::2;::::0;::::2;::::0;;;48838:25:::2;48866:41:::0;;;;;;;48918:20:::2;48866:41:::0;48918:7:::2;:20::i;:::-;-1:-1:-1::0;;12188:1:0;13140:7;:22;-1:-1:-1;48657:289:0:o;28001:339::-;28196:41;8233:10;28229:7;28196:18;:41::i;:::-;28188:103;;;;-1:-1:-1;;;28188:103:0;;;;;;;:::i;:::-;28304:28;28314:4;28320:2;28324:7;28304:9;:28::i;38746:256::-;38843:7;38879:23;38896:5;38879:16;:23::i;:::-;38871:5;:31;38863:87;;;;-1:-1:-1;;;38863:87:0;;17189:2:1;38863:87:0;;;17171:21:1;17228:2;17208:18;;;17201:30;17267:34;17247:18;;;17240:62;-1:-1:-1;;;17318:18:1;;;17311:41;17369:19;;38863:87:0;17161:233:1;38863:87:0;-1:-1:-1;;;;;;38968:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38746:256::o;28411:185::-;28549:39;28566:4;28572:2;28576:7;28549:39;;;;;;;;;;;;:16;:39::i;47397:1225::-;12232:1;12828:7;;:19;;12820:63;;;;-1:-1:-1;;;12820:63:0;;;;;;;:::i;:::-;12232:1;12961:7;:18;9366:6;;-1:-1:-1;;;;;9366:6:0;8233:10;9513:23:::1;9505:68;;;;-1:-1:-1::0;;;9505:68:0::1;;;;;;;:::i;:::-;47548:10:::2;::::0;47529:7;;47523:21;:35:::2;::::0;::::2;::::0;:74:::2;;-1:-1:-1::0;47587:10:0::2;::::0;47568:7:::2;::::0;::::2;::::0;47562:21;:35:::2;;47523:74;:113;;;;-1:-1:-1::0;47626:10:0::2;::::0;47607:7;;::::2;::::0;47601:21;:35:::2;;47523:113;:152;;;;-1:-1:-1::0;47665:10:0::2;::::0;47646:7;;::::2;::::0;47640:21;:35:::2;;47523:152;:201;;;;-1:-1:-1::0;47714:10:0::2;::::0;47695:7;;::::2;::::0;47689:21;:35:::2;;47523:201;:240;;;;-1:-1:-1::0;47753:10:0::2;::::0;47734:7;;::::2;::::0;47728:21;:35:::2;;47523:240;:279;;;;-1:-1:-1::0;47792:10:0::2;::::0;47773:7;;::::2;::::0;47767:21;:35:::2;;47523:279;:318;;;;-1:-1:-1::0;47831:10:0::2;::::0;47812:7;;::::2;::::0;47806:21;:35:::2;;47523:318;:367;;;;-1:-1:-1::0;47880:10:0::2;::::0;47861:7;;::::2;::::0;47855:21;:35:::2;;47523:367;:406;;;;-1:-1:-1::0;47919:10:0::2;::::0;47900:7;;::::2;::::0;47894:21;:35:::2;;47523:406;:446;;;;-1:-1:-1::0;47959:10:0::2;::::0;47939:8;;::::2;::::0;47933:22;:36:::2;;47523:446;:486;;;;-1:-1:-1::0;47999:10:0::2;::::0;47979:8;;::::2;::::0;47973:22;:36:::2;;47523:486;:535;;;;-1:-1:-1::0;48048:10:0::2;::::0;48028:8;;::::2;::::0;48022:22;:36:::2;;47523:535;:575;;;;-1:-1:-1::0;48088:10:0::2;::::0;48068:8;;::::2;::::0;48062:22;:36:::2;;47523:575;:615;;;;-1:-1:-1::0;48128:10:0::2;::::0;48108:8;;::::2;::::0;48102:22;:36:::2;;47523:615;:655;;;;-1:-1:-1::0;48168:10:0::2;::::0;48148:8;;::::2;::::0;48142:22;:36:::2;;47523:655;:705;;;;-1:-1:-1::0;48218:10:0::2;::::0;48198:8;;::::2;::::0;48192:22;:36:::2;;47523:705;48285:20;48294:10;;48285:8;:20::i;:::-;48237:79;;;;;;;;:::i;:::-;;;;;;;;;;;;;47515:803;;;;;-1:-1:-1::0;;;47515:803:0::2;;;;;;;;:::i;:::-;;48374:14;;48343:19;48337:33;:51;;48456:24;48465:14;;48456:8;:24::i;:::-;48397:94;;;;;;;;:::i;:::-;;;;;;;;;;;;;48329:164;;;;;-1:-1:-1::0;;;48329:164:0::2;;;;;;;;:::i;:::-;-1:-1:-1::0;48514:41:0::2;8233:10:::0;47192:4;:11;48538:16:::2;::::0;48553:1:::2;48538:16;:::i;48514:41::-;48566:48;48574:39;;;;;;;;48581:4;48574:39;;;;48587:19;48574:39;;;;48608:4;48574:39;;;;::::0;48566:7:::2;:48::i;:::-;-1:-1:-1::0;;12188:1:0;13140:7;:22;47397:1225::o;45538:823::-;45593:13;45637:1;45627:7;:11;:37;;;;-1:-1:-1;45653:4:0;:11;45642:22;;;45627:37;45619:100;;;;-1:-1:-1;;;45619:100:0;;;;;;;:::i;:::-;45740:22;45789;45801:7;45809:1;45789:11;:22::i;:::-;45813;45825:7;45833:1;45813:11;:22::i;:::-;45837;45849:7;45857:1;45837:11;:22::i;:::-;45861;45873:7;45881:1;45861:11;:22::i;:::-;45885;45897:7;45905:1;45885:11;:22::i;:::-;45909;45921:7;45929:1;45909:11;:22::i;:::-;45933;45945:7;45953:1;45933:11;:22::i;:::-;45772:184;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45740:217;;46003:8;46013:22;46025:7;46033:1;46013:11;:22::i;:::-;46037;46049:7;46057:1;46037:11;:22::i;:::-;46061:23;46073:7;46081:2;46061:11;:23::i;:::-;46086;46098:7;46106:2;46086:11;:23::i;:::-;46111;46123:7;46131:2;46111:11;:23::i;:::-;46136;46148:7;46156:2;46136:11;:23::i;:::-;45986:174;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45968:193;;46207:8;46217:23;46229:7;46237:2;46217:11;:23::i;:::-;46242;46254:7;46262:2;46242:11;:23::i;:::-;46267;46279:7;46287:2;46267:11;:23::i;:::-;46292;46304:7;46312:2;46292:11;:23::i;:::-;46190:126;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;46190:126:0;;;;;;;;;;45538:823;-1:-1:-1;;;45538:823:0:o;39268:233::-;39343:7;39379:30;39166:10;:17;;39078:113;39379:30;39371:5;:38;39363:95;;;;-1:-1:-1;;;39363:95:0;;25135:2:1;39363:95:0;;;25117:21:1;25174:2;25154:18;;;25147:30;25213:34;25193:18;;;25186:62;-1:-1:-1;;;25264:18:1;;;25257:42;25316:19;;39363:95:0;25107:234:1;39363:95:0;39476:10;39487:5;39476:17;;;;;;-1:-1:-1;;;39476:17:0;;;;;;;;;;;;;;;;;39469:24;;39268:233;;;:::o;45132:394::-;45208:13;45252:1;45242:7;:11;:37;;;;-1:-1:-1;45268:4:0;:11;45257:22;;;45242:37;45234:100;;;;-1:-1:-1;;;45234:100:0;;;;;;;:::i;:::-;45363:1;45353:7;:11;:28;;;;;45379:2;45368:7;:13;;45353:28;45345:76;;;;-1:-1:-1;;;45345:76:0;;23501:2:1;45345:76:0;;;23483:21:1;23540:2;23520:18;;;23513:30;23579:34;23559:18;;;23552:62;-1:-1:-1;;;23630:18:1;;;23623:33;23673:19;;45345:76:0;23473:225:1;45345:76:0;45432:22;45457:4;45462:11;45472:1;45462:7;:11;:::i;:::-;45457:17;;;;;;-1:-1:-1;;;45457:17:0;;;;;;;;;;;;;;;;;;;;;;45480:11;45490:1;45480:7;:11;:::i;:::-;45457:35;;;;;-1:-1:-1;;;45457:35:0;;;;;;;;;;45432:60;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45432:60:0;;45132:394;-1:-1:-1;;;;;;;;45132:394:0:o;25246:239::-;25318:7;25354:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25354:16:0;25389:19;25381:73;;;;-1:-1:-1;;;25381:73:0;;21956:2:1;25381:73:0;;;21938:21:1;21995:2;21975:18;;;21968:30;22034:34;22014:18;;;22007:62;-1:-1:-1;;;22085:18:1;;;22078:39;22134:19;;25381:73:0;21928:231:1;24976:208:0;25048:7;-1:-1:-1;;;;;25076:19:0;;25068:74;;;;-1:-1:-1;;;25068:74:0;;21545:2:1;25068:74:0;;;21527:21:1;21584:2;21564:18;;;21557:30;21623:34;21603:18;;;21596:62;-1:-1:-1;;;21674:18:1;;;21667:40;21724:19;;25068:74:0;21517:232:1;25068:74:0;-1:-1:-1;;;;;;25160:16:0;;;;;:9;:16;;;;;;;24976:208::o;9944:94::-;9366:6;;-1:-1:-1;;;;;9366:6:0;8233:10;9513:23;9505:68;;;;-1:-1:-1;;;9505:68:0;;;;;;;:::i;:::-;10009:21:::1;10027:1;10009:9;:21::i;:::-;9944:94::o:0;49094:1449::-;12232:1;12828:7;;:19;;12820:63;;;;-1:-1:-1;;;12820:63:0;;;;;;;:::i;:::-;12232:1;12961:7;:18;49255:10:::1;::::0;49236:7;;49230:21;:35:::1;::::0;::::1;::::0;:74:::1;;-1:-1:-1::0;49294:10:0::1;::::0;49275:7:::1;::::0;::::1;::::0;49269:21;:35:::1;;49230:74;:113;;;;-1:-1:-1::0;49333:10:0::1;::::0;49314:7;;::::1;::::0;49308:21;:35:::1;;49230:113;:152;;;;-1:-1:-1::0;49372:10:0::1;::::0;49353:7;;::::1;::::0;49347:21;:35:::1;;49230:152;:201;;;;-1:-1:-1::0;49421:10:0::1;::::0;49402:7;;::::1;::::0;49396:21;:35:::1;;49230:201;:240;;;;-1:-1:-1::0;49460:10:0::1;::::0;49441:7;;::::1;::::0;49435:21;:35:::1;;49230:240;:279;;;;-1:-1:-1::0;49499:10:0::1;::::0;49480:7;;::::1;::::0;49474:21;:35:::1;;49230:279;:318;;;;-1:-1:-1::0;49538:10:0::1;::::0;49519:7;;::::1;::::0;49513:21;:35:::1;;49230:318;:367;;;;-1:-1:-1::0;49587:10:0::1;::::0;49568:7;;::::1;::::0;49562:21;:35:::1;;49230:367;:406;;;;-1:-1:-1::0;49626:10:0::1;::::0;49607:7;;::::1;::::0;49601:21;:35:::1;;49230:406;:446;;;;-1:-1:-1::0;49666:10:0::1;::::0;49646:8;;::::1;::::0;49640:22;:36:::1;;49230:446;:486;;;;-1:-1:-1::0;49706:10:0::1;::::0;49686:8;;::::1;::::0;49680:22;:36:::1;;49230:486;:535;;;;-1:-1:-1::0;49755:10:0::1;::::0;49735:8;;::::1;::::0;49729:22;:36:::1;;49230:535;:575;;;;-1:-1:-1::0;49795:10:0::1;::::0;49775:8;;::::1;::::0;49769:22;:36:::1;;49230:575;:615;;;;-1:-1:-1::0;49835:10:0::1;::::0;49815:8;;::::1;::::0;49809:22;:36:::1;;49230:615;:655;;;;-1:-1:-1::0;49875:10:0::1;::::0;49855:8;;::::1;::::0;49849:22;:36:::1;;49230:655;:705;;;;-1:-1:-1::0;49925:10:0::1;::::0;49905:8;;::::1;::::0;49899:22;:36:::1;;49230:705;49992:20;50001:10;;49992:8;:20::i;:::-;49944:79;;;;;;;;:::i;:::-;;;;;;;;;;;;;49222:803;;;;;-1:-1:-1::0;;;49222:803:0::1;;;;;;;;:::i;:::-;;50081:14;;50050:19;50044:33;:51;;50163:24;50172:14;;50163:8;:24::i;:::-;50104:94;;;;;;;;:::i;:::-;;;;;;;;;;;;;50036:164;;;;;-1:-1:-1::0;;;50036:164:0::1;;;;;;;;:::i;:::-;-1:-1:-1::0;50219:4:0::1;50224:11;50234:1;50224:7:::0;:11:::1;:::i;:::-;50219:17;;;;;;-1:-1:-1::0;;;50219:17:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;:27:::1;:17;::::0;;::::1;;:27;::::0;::::1;;:36;50211:73;;;::::0;-1:-1:-1;;;50211:73:0;;16836:2:1;50211:73:0::1;::::0;::::1;16818:21:1::0;16875:2;16855:18;;;16848:30;16914:26;16894:18;;;16887:54;16958:18;;50211:73:0::1;16808:174:1::0;50211:73:0::1;50319:22;50333:7;50319:13;:22::i;:::-;-1:-1:-1::0;;;;;50303:38:0::1;8233:10:::0;-1:-1:-1;;;;;50303:38:0::1;;50295:85;;;;-1:-1:-1::0;;;50295:85:0::1;;;;;;;:::i;:::-;50426:4:::0;50401::::1;50406:11;50416:1;50406:7:::0;:11:::1;:::i;:::-;50401:17;;;;;;-1:-1:-1::0;;;50401:17:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;:29:::1;::::0;:17:::1;::::0;;::::1;;::::0;:29:::1;;:::i;:::-;-1:-1:-1::0;50470:19:0;50441:4:::1;50446:11;50456:1;50446:7:::0;:11:::1;:::i;:::-;50441:17;;;;;;-1:-1:-1::0;;;50441:17:0::1;;;;;;;;;;;;;;;;;;;:26;;:48;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;50531:4:0::1;50501;50506:11;50531:4:::0;50506:7;:11:::1;:::i;:::-;50501:17;;;;;;-1:-1:-1::0;;;50501:17:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:27;;:34:::0;;-1:-1:-1;;50501:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;;13140:7:0;:22;-1:-1:-1;49094:1449:0:o;25721:104::-;25777:13;25810:7;25803:14;;;;;:::i;27404:295::-;-1:-1:-1;;;;;27507:24:0;;8233:10;27507:24;;27499:62;;;;-1:-1:-1;;;27499:62:0;;19592:2:1;27499:62:0;;;19574:21:1;19631:2;19611:18;;;19604:30;19670:27;19650:18;;;19643:55;19715:18;;27499:62:0;19564:175:1;27499:62:0;8233:10;27574:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27574:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27574:53:0;;;;;;;;;;27643:48;;16358:41:1;;;27574:42:0;;8233:10;27643:48;;16331:18:1;27643:48:0;;;;;;;27404:295;;:::o;46683:418::-;46798:22;46812:7;46798:13;:22::i;:::-;-1:-1:-1;;;;;46782:38:0;8233:10;-1:-1:-1;;;;;46782:38:0;;46774:85;;;;-1:-1:-1;;;46774:85:0;;;;;;;:::i;:::-;46915:14;;46884:19;46878:33;:51;;46997:24;47006:14;;46997:8;:24::i;:::-;46938:94;;;;;;;;:::i;:::-;;;;;;;;;;;;;46870:164;;;;;-1:-1:-1;;;46870:164:0;;;;;;;;:::i;:::-;-1:-1:-1;47074:19:0;47045:4;47050:11;47060:1;47050:7;:11;:::i;:::-;47045:17;;;;;;-1:-1:-1;;;47045:17:0;;;;;;;;;;;;;;;;;;;:26;;:48;;;;;;;;;;;;:::i;28667:328::-;28842:41;8233:10;28875:7;28842:18;:41::i;:::-;28834:103;;;;-1:-1:-1;;;28834:103:0;;;;;;;:::i;:::-;28948:39;28962:4;28968:2;28972:7;28981:5;28948:13;:39::i;:::-;28667:328;;;;:::o;50608:3598::-;50673:13;50699:23;;:::i;:::-;50733:266;;;;;;;;;;;;;;;;;;;51023:23;51035:7;51044:1;51023:11;:23::i;:::-;51012:5;51018:1;51012:8;;;:34;;;;51067:53;;;;;;;;;;;;;;;;;:8;;;:53;51152:23;51164:7;51073:1;51152:11;:23::i;:::-;51141:8;;;;:34;;;;51196:53;;;;;;;;;;;;;51141:8;51196:53;;;:8;;;:53;51281:23;51293:7;51302:1;51281:11;:23::i;:::-;51270:8;;;:34;51325:53;;;;;;;;;;;;;;51270:8;51325:53;;;:8;;;:53;51410:23;51422:7;51431:1;51410:11;:23::i;:::-;51399:8;;;:34;51454:54;;;;;;;;;;;;;;51399:8;51454:54;;;:8;;;:54;51540:23;51552:7;51561:1;51540:11;:23::i;:::-;51529:8;;;:34;51584:55;;;;;;;;;;;;;;51529:8;51584:55;;;:9;;;:55;51672:23;51684:7;51693:1;51672:11;:23::i;:::-;51660:9;;;:35;51716:55;;;;;;;;;;;;;;51660:9;51716:55;;;:9;;;:55;51804:23;51816:7;51825:1;51804:11;:23::i;:::-;51792:9;;;:35;51848:55;;;;;;;;;;;;;;51792:9;51848:55;;;:9;;;:55;51936:23;51948:7;51957:1;51936:11;:23::i;:::-;51924:9;;;:35;51980:55;;;;;;;;;;;;;;51924:9;51980:55;;;:9;;;:55;52068:23;52080:7;52089:1;52068:11;:23::i;:::-;52056:9;;;:35;52112:55;;;;;;;;;;;;;;52056:9;52112:55;;;:9;;;:55;52200:24;52212:7;52221:2;52200:11;:24::i;:::-;52188:9;;;:36;52245:55;;;;;;;;;;;;;;52188:9;52245:55;;;:9;;;:55;52333:24;52345:7;52354:2;52333:11;:24::i;:::-;52321:9;;;:36;52378:55;;;;;;;;;;;;;;52321:9;52378:55;;;:9;;;:55;52466:24;52478:7;52487:2;52466:11;:24::i;:::-;52454:9;;;:36;52511:55;;;;;;;;;;;;;;52454:9;52511:55;;;:9;;;:55;52599:24;52611:7;52620:2;52599:11;:24::i;:::-;52587:9;;;:36;52644:55;;;;;;;;;;;;;;52587:9;52644:55;;;:9;;;:55;52732:24;52744:7;52753:2;52732:11;:24::i;:::-;52720:9;;;:36;52777:55;;;;;;;;;;;;;;52720:9;52777:55;;;:9;;;:55;52865:24;52877:7;52886:2;52865:11;:24::i;:::-;52853:9;;;:36;52910:55;;;;;;;;;;;;;;52853:9;52910:55;;;:9;;;:55;52998:24;53010:7;53019:2;52998:11;:24::i;:::-;52986:9;;;:36;53043:55;;;;;;;;;;;;;;52986:9;53043:55;;;:9;;;:55;53131:24;53143:7;53152:2;53131:11;:24::i;:::-;53119:9;;;:36;53168:27;;;;;;;;;;;-1:-1:-1;;;53119:9:0;53168:27;;;;;;;:9;;;:27;;;;53255:8;;53265;;;;53275;;;;53285;;;;53295;;;;53305;;;;53315;;;;53325;;;;53335;;;;53238:106;;-1:-1:-1;;53238:106:0;;53335:8;;53238:106;;:::i;:::-;;;;;;;-1:-1:-1;;53238:106:0;;;;;;;53397:8;;;;53407:9;;;;53418;;;;53429;;;;53440;;;;53451;;;;53462;;;;53473;;;;53238:106;;-1:-1:-1;53372:111:0;;53238:106;;53473:9;53397:8;53372:111;;:::i;:::-;;;;;;;-1:-1:-1;;53372:111:0;;;;;;;53536:9;;;;53547;;;;53558;;;;53569;;;;53580;;;;53591;;;;53602;;;;53613;;;;53372:111;;-1:-1:-1;53511:112:0;;53372:111;;53613:9;53536;53511:112;;:::i;:::-;;;;-1:-1:-1;;53511:112:0;;;;;;;;;;53676:9;;;;53687;;;;53698;;;;53709;;;;53720;;;;53731;;;;53742;;;;53753;;;;53511:112;;-1:-1:-1;53651:112:0;;53511;;53753:9;53676;53651:112;;:::i;:::-;;;;;;;-1:-1:-1;;53651:112:0;;;;;;;53816:9;;;;53827;;;;53651:112;;-1:-1:-1;53791:46:0;;53651:112;;53827:9;53816;53791:46;;:::i;:::-;;;;;;;;;;;;;53775:63;;53859:18;53880:209;53944:17;53953:7;53944:8;:17::i;:::-;53986:20;53998:7;53986:11;:20::i;:::-;54051:28;54071:6;54051:13;:28::i;:::-;53907:179;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53880:13;:209::i;:::-;53859:230;;54166:4;54116:55;;;;;;;;:::i;:::-;;;;-1:-1:-1;;54116:55:0;;;;;;;;;;50608:3598;-1:-1:-1;;;;;50608:3598:0:o;46373:237::-;46432:13;46476:1;46466:7;:11;:37;;;;-1:-1:-1;46492:4:0;:11;46481:22;;;46466:37;46458:100;;;;-1:-1:-1;;;46458:100:0;;;;;;;:::i;:::-;46576:4;46581:11;46591:1;46581:7;:11;:::i;:::-;46576:17;;;;;;-1:-1:-1;;;46576:17:0;;;;;;;;;;;;;;;;;;;:26;;46569:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46373:237;;;:::o;10193:192::-;9366:6;;-1:-1:-1;;;;;9366:6:0;8233:10;9513:23;9505:68;;;;-1:-1:-1;;;9505:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10282:22:0;::::1;10274:73;;;::::0;-1:-1:-1;;;10274:73:0;;18020:2:1;10274:73:0::1;::::0;::::1;18002:21:1::0;18059:2;18039:18;;;18032:30;18098:34;18078:18;;;18071:62;-1:-1:-1;;;18149:18:1;;;18142:36;18195:19;;10274:73:0::1;17992:228:1::0;10274:73:0::1;10358:19;10368:8;10358:9;:19::i;:::-;10193:192:::0;:::o;24607:305::-;24709:4;-1:-1:-1;;;;;;24746:40:0;;-1:-1:-1;;;24746:40:0;;:105;;-1:-1:-1;;;;;;;24803:48:0;;-1:-1:-1;;;24803:48:0;24746:105;:158;;;-1:-1:-1;;;;;;;;;;23323:40:0;;;24868:36;23214:157;34487:174;34562:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34562:29:0;-1:-1:-1;;;;;34562:29:0;;;;;;;;:24;;34616:23;34562:24;34616:14;:23::i;:::-;-1:-1:-1;;;;;34607:46:0;;;;;;;;;;;34487:174;;:::o;31489:110::-;31565:26;31575:2;31579:7;31565:26;;;;;;;;;;;;:9;:26::i;:::-;31489:110;;:::o;44970:150::-;45056:5;45041:12;47192:4;:11;;47113:98;45041:12;:20;45033:46;;;;-1:-1:-1;;;45033:46:0;;19946:2:1;45033:46:0;;;19928:21:1;19985:2;19965:18;;;19958:30;-1:-1:-1;;;20004:18:1;;;19997:43;20057:18;;45033:46:0;19918:163:1;45033:46:0;45090:4;:22;;;;;;;-1:-1:-1;45090:22:0;;;;;;45100:11;;45090:22;;;;;;;;;;;:::i;:::-;-1:-1:-1;45090:22:0;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;45090:22:0;;;;;;;;;;;;-1:-1:-1;;45090:22:0;;;;;;;;;;-1:-1:-1;44970:150:0:o;30799:348::-;30892:4;30594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30594:16:0;30909:73;;;;-1:-1:-1;;;30909:73:0;;20288:2:1;30909:73:0;;;20270:21:1;20327:2;20307:18;;;20300:30;20366:34;20346:18;;;20339:62;-1:-1:-1;;;20417:18:1;;;20410:42;20469:19;;30909:73:0;20260:234:1;30909:73:0;30993:13;31009:23;31024:7;31009:14;:23::i;:::-;30993:39;;31062:5;-1:-1:-1;;;;;31051:16:0;:7;-1:-1:-1;;;;;31051:16:0;;:51;;;;31095:7;-1:-1:-1;;;;;31071:31:0;:20;31083:7;31071:11;:20::i;:::-;-1:-1:-1;;;;;31071:31:0;;31051:51;:87;;;-1:-1:-1;;;;;;27891:25:0;;;27867:4;27891:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31106:32;31043:96;30799:348;-1:-1:-1;;;;30799:348:0:o;33791:578::-;33950:4;-1:-1:-1;;;;;33923:31:0;:23;33938:7;33923:14;:23::i;:::-;-1:-1:-1;;;;;33923:31:0;;33915:85;;;;-1:-1:-1;;;33915:85:0;;23905:2:1;33915:85:0;;;23887:21:1;23944:2;23924:18;;;23917:30;23983:34;23963:18;;;23956:62;-1:-1:-1;;;24034:18:1;;;24027:39;24083:19;;33915:85:0;23877:231:1;33915:85:0;-1:-1:-1;;;;;34019:16:0;;34011:65;;;;-1:-1:-1;;;34011:65:0;;19187:2:1;34011:65:0;;;19169:21:1;19226:2;19206:18;;;19199:30;19265:34;19245:18;;;19238:62;-1:-1:-1;;;19316:18:1;;;19309:34;19360:19;;34011:65:0;19159:226:1;34011:65:0;34089:39;34110:4;34116:2;34120:7;34089:20;:39::i;:::-;34193:29;34210:1;34214:7;34193:8;:29::i;:::-;-1:-1:-1;;;;;34235:15:0;;;;;;:9;:15;;;;;:20;;34254:1;;34235:15;:20;;34254:1;;34235:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34266:13:0;;;;;;:9;:13;;;;;:18;;34283:1;;34266:13;:18;;34283:1;;34266:18;:::i;:::-;;;;-1:-1:-1;;34295:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34295:21:0;-1:-1:-1;;;;;34295:21:0;;;;;;;;;34334:27;;34295:16;;34334:27;;;;;;;33791:578;;;:::o;54218:715::-;54274:13;54487:10;54483:53;;-1:-1:-1;;54514:10:0;;;;;;;;;;;;-1:-1:-1;;;54514:10:0;;;;;54218:715::o;54483:53::-;54561:5;54546:12;54602:78;54609:9;;54602:78;;54635:8;;;;:::i;:::-;;-1:-1:-1;54658:10:0;;-1:-1:-1;54666:2:0;54658:10;;:::i;:::-;;;54602:78;;;54690:19;54722:6;54712:17;;;;;;-1:-1:-1;;;54712:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54712:17:0;;54690:39;;54740:154;54747:10;;54740:154;;54774:11;54784:1;54774:11;;:::i;:::-;;-1:-1:-1;54843:10:0;54851:2;54843:5;:10;:::i;:::-;54830:24;;:2;:24;:::i;:::-;54817:39;;54800:6;54807;54800:14;;;;;;-1:-1:-1;;;54800:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;54800:56:0;;;;;;;;-1:-1:-1;54871:11:0;54880:2;54871:11;;:::i;:::-;;;54740:154;;10393:173;10468:6;;;-1:-1:-1;;;;;10485:17:0;;;-1:-1:-1;;;;;;10485:17:0;;;;;;;10518:40;;10468:6;;;10485:17;10468:6;;10518:40;;10449:16;;10518:40;10393:173;;:::o;29877:315::-;30034:28;30044:4;30050:2;30054:7;30034:9;:28::i;:::-;30081:48;30104:4;30110:2;30114:7;30123:5;30081:22;:48::i;:::-;30073:111;;;;-1:-1:-1;;;30073:111:0;;;;;;;:::i;55348:1607::-;55446:11;;55406:13;;55472:8;55468:23;;-1:-1:-1;;55482:9:0;;;;;;;;;-1:-1:-1;55482:9:0;;;55348:1607;-1:-1:-1;55348:1607:0:o;55468:23::-;55543:18;55581:1;55570:7;:3;55576:1;55570:7;:::i;:::-;55569:13;;;;:::i;:::-;55564:19;;:1;:19;:::i;:::-;55543:40;-1:-1:-1;55641:19:0;55673:15;55543:40;55686:2;55673:15;:::i;:::-;55663:26;;;;;;-1:-1:-1;;;55663:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55663:26:0;;55641:48;;55702:18;55723:5;;;;;;;;;;;;;;;;;55702:26;;55792:1;55785:5;55781:13;55837:2;55829:6;55825:15;55888:1;55856:777;55911:3;55908:1;55905:10;55856:777;;;55966:1;56009:12;;;;;56003:19;56104:4;56092:2;56088:14;;;;;56070:40;;56064:47;56213:2;56209:14;;;56205:25;;56191:40;;56185:47;56342:1;56338:13;;;56334:24;;56320:39;;56314:46;56462:16;;;;56448:31;;56442:38;56140:1;56136:11;;;56234:4;56181:58;;;56172:68;56265:11;;56310:57;;;56301:67;;;;56393:11;;56438:49;;56429:59;56517:3;56513:13;56546:22;;56616:1;56601:17;;;;55959:9;55856:777;;;55860:44;56665:1;56660:3;56656:11;56686:1;56681:84;;;;56784:1;56779:82;;;;56649:212;;56681:84;-1:-1:-1;;;;;56714:17:0;;56707:43;56681:84;;56779:82;-1:-1:-1;;;;;56812:17:0;;56805:41;56649:212;-1:-1:-1;;;56877:26:0;;;56884:6;55348:1607;-1:-1:-1;;;;55348:1607:0:o;31826:321::-;31956:18;31962:2;31966:7;31956:5;:18::i;:::-;32007:54;32038:1;32042:2;32046:7;32055:5;32007:22;:54::i;:::-;31985:154;;;;-1:-1:-1;;;31985:154:0;;;;;;;:::i;40114:589::-;-1:-1:-1;;;;;40320:18:0;;40316:187;;40355:40;40387:7;41530:10;:17;;41503:24;;;;:15;:24;;;;;:44;;;41558:24;;;;;;;;;;;;41426:164;40355:40;40316:187;;;40425:2;-1:-1:-1;;;;;40417:10:0;:4;-1:-1:-1;;;;;40417:10:0;;40413:90;;40444:47;40477:4;40483:7;40444:32;:47::i;:::-;-1:-1:-1;;;;;40517:16:0;;40513:183;;40550:45;40587:7;40550:36;:45::i;40513:183::-;40623:4;-1:-1:-1;;;;;40617:10:0;:2;-1:-1:-1;;;;;40617:10:0;;40613:83;;40644:40;40672:2;40676:7;40644:27;:40::i;35226:803::-;35381:4;-1:-1:-1;;;;;35402:13:0;;15709:20;15757:8;35398:624;;35438:72;;-1:-1:-1;;;35438:72:0;;-1:-1:-1;;;;;35438:36:0;;;;;:72;;8233:10;;35489:4;;35495:7;;35504:5;;35438:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35438:72:0;;;;;;;;-1:-1:-1;;35438:72:0;;;;;;;;;;;;:::i;:::-;;;35434:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35684:13:0;;35680:272;;35727:60;;-1:-1:-1;;;35727:60:0;;;;;;;:::i;35680:272::-;35902:6;35896:13;35887:6;35883:2;35879:15;35872:38;35434:533;-1:-1:-1;;;;;;35561:55:0;-1:-1:-1;;;35561:55:0;;-1:-1:-1;35554:62:0;;35398:624;-1:-1:-1;36006:4:0;35226:803;;;;;;:::o;32483:382::-;-1:-1:-1;;;;;32563:16:0;;32555:61;;;;-1:-1:-1;;;32555:61:0;;22366:2:1;32555:61:0;;;22348:21:1;;;22385:18;;;22378:30;22444:34;22424:18;;;22417:62;22496:18;;32555:61:0;22338:182:1;32555:61:0;30570:4;30594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30594:16:0;:30;32627:58;;;;-1:-1:-1;;;32627:58:0;;18427:2:1;32627:58:0;;;18409:21:1;18466:2;18446:18;;;18439:30;18505;18485:18;;;18478:58;18553:18;;32627:58:0;18399:178:1;32627:58:0;32698:45;32727:1;32731:2;32735:7;32698:20;:45::i;:::-;-1:-1:-1;;;;;32756:13:0;;;;;;:9;:13;;;;;:18;;32773:1;;32756:13;:18;;32773:1;;32756:18;:::i;:::-;;;;-1:-1:-1;;32785:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32785:21:0;-1:-1:-1;;;;;32785:21:0;;;;;;;;32824:33;;32785:16;;;32824:33;;32785:16;;32824:33;32483:382;;:::o;42217:988::-;42483:22;42533:1;42508:22;42525:4;42508:16;:22::i;:::-;:26;;;;:::i;:::-;42545:18;42566:26;;;:17;:26;;;;;;42483:51;;-1:-1:-1;42699:28:0;;;42695:328;;-1:-1:-1;;;;;42766:18:0;;42744:19;42766:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42817:30;;;;;;:44;;;42934:30;;:17;:30;;;;;:43;;;42695:328;-1:-1:-1;43119:26:0;;;;:17;:26;;;;;;;;43112:33;;;-1:-1:-1;;;;;43163:18:0;;;;;:12;:18;;;;;:34;;;;;;;43156:41;42217:988::o;43500:1079::-;43778:10;:17;43753:22;;43778:21;;43798:1;;43778:21;:::i;:::-;43810:18;43831:24;;;:15;:24;;;;;;44204:10;:26;;43753:46;;-1:-1:-1;43831:24:0;;43753:46;;44204:26;;;;-1:-1:-1;;;44204:26:0;;;;;;;;;;;;;;;;;44182:48;;44268:11;44243:10;44254;44243:22;;;;;;-1:-1:-1;;;44243:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;44348:28;;;:15;:28;;;;;;;:41;;;44520:24;;;;;44513:31;44555:10;:16;;;;;-1:-1:-1;;;44555:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;43500:1079;;;;:::o;41004:221::-;41089:14;41106:20;41123:2;41106:16;:20::i;:::-;-1:-1:-1;;;;;41137:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41182:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41004:221:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;14:631:1:-;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:884::-;877:5;930:3;923:4;915:6;911:17;907:27;897:2;;952:5;945;938:20;897:2;989;983:9;1011:3;1053:2;1045:6;1041:15;1075:18;1143:6;1131:10;1128:22;1123:2;1111:10;1108:18;1105:46;1102:2;;;1154:18;;:::i;:::-;1194:10;1190:2;1183:22;1225:6;1214:17;;1251:6;1289:3;1284:2;1276:6;1272:15;1269:24;1266:2;;;1310:5;1303;1296:20;1266:2;1336:5;1327:14;;1350:332;1364:4;1361:1;1358:11;1350:332;;;1443:3;1430:17;1479:2;1466:11;1463:19;1460:2;;;1499:5;1492;1485:20;1460:2;1532:48;1576:3;1562:11;1554:6;1550:24;1532:48;:::i;:::-;1520:61;;-1:-1:-1;1384:1:1;1377:9;;;;;1604:4;1628:12;;;;1660;1350:332;;;-1:-1:-1;1700:6:1;;887:825;-1:-1:-1;;;;;;887:825:1:o;1717:229::-;1760:5;1813:3;1806:4;1798:6;1794:17;1790:27;1780:2;;1835:5;1828;1821:20;1780:2;1861:79;1936:3;1927:6;1914:20;1907:4;1899:6;1895:17;1861:79;:::i;:::-;1852:88;1770:176;-1:-1:-1;;;1770:176:1:o;1951:196::-;2010:6;2063:2;2051:9;2042:7;2038:23;2034:32;2031:2;;;2084:6;2076;2069:22;2031:2;2112:29;2131:9;2112:29;:::i;2152:270::-;2220:6;2228;2281:2;2269:9;2260:7;2256:23;2252:32;2249:2;;;2302:6;2294;2287:22;2249:2;2330:29;2349:9;2330:29;:::i;:::-;2320:39;;2378:38;2412:2;2401:9;2397:18;2378:38;:::i;:::-;2368:48;;2239:183;;;;;:::o;2427:338::-;2504:6;2512;2520;2573:2;2561:9;2552:7;2548:23;2544:32;2541:2;;;2594:6;2586;2579:22;2541:2;2622:29;2641:9;2622:29;:::i;:::-;2612:39;;2670:38;2704:2;2693:9;2689:18;2670:38;:::i;:::-;2660:48;;2755:2;2744:9;2740:18;2727:32;2717:42;;2531:234;;;;;:::o;2770:696::-;2865:6;2873;2881;2889;2942:3;2930:9;2921:7;2917:23;2913:33;2910:2;;;2964:6;2956;2949:22;2910:2;2992:29;3011:9;2992:29;:::i;:::-;2982:39;;3040:38;3074:2;3063:9;3059:18;3040:38;:::i;:::-;3030:48;;3125:2;3114:9;3110:18;3097:32;3087:42;;3180:2;3169:9;3165:18;3152:32;3207:18;3199:6;3196:30;3193:2;;;3244:6;3236;3229:22;3193:2;3272:22;;3325:4;3317:13;;3313:27;-1:-1:-1;3303:2:1;;3359:6;3351;3344:22;3303:2;3387:73;3452:7;3447:2;3434:16;3429:2;3425;3421:11;3387:73;:::i;:::-;3377:83;;;2900:566;;;;;;;:::o;3471:367::-;3536:6;3544;3597:2;3585:9;3576:7;3572:23;3568:32;3565:2;;;3618:6;3610;3603:22;3565:2;3646:29;3665:9;3646:29;:::i;:::-;3636:39;;3725:2;3714:9;3710:18;3697:32;3772:5;3765:13;3758:21;3751:5;3748:32;3738:2;;3799:6;3791;3784:22;3738:2;3827:5;3817:15;;;3555:283;;;;;:::o;3843:264::-;3911:6;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:2;;;3993:6;3985;3978:22;3940:2;4021:29;4040:9;4021:29;:::i;:::-;4011:39;4097:2;4082:18;;;;4069:32;;-1:-1:-1;;;3930:177:1:o;4112:603::-;4224:6;4232;4285:2;4273:9;4264:7;4260:23;4256:32;4253:2;;;4306:6;4298;4291:22;4253:2;4351:9;4338:23;4380:18;4421:2;4413:6;4410:14;4407:2;;;4442:6;4434;4427:22;4407:2;4470:56;4518:7;4509:6;4498:9;4494:22;4470:56;:::i;:::-;4460:66;;4579:2;4568:9;4564:18;4551:32;4535:48;;4608:2;4598:8;4595:16;4592:2;;;4629:6;4621;4614:22;4592:2;;4657:52;4701:7;4690:8;4679:9;4675:24;4657:52;:::i;:::-;4647:62;;;4243:472;;;;;:::o;4720:255::-;4778:6;4831:2;4819:9;4810:7;4806:23;4802:32;4799:2;;;4852:6;4844;4837:22;4799:2;4896:9;4883:23;4915:30;4939:5;4915:30;:::i;4980:259::-;5049:6;5102:2;5090:9;5081:7;5077:23;5073:32;5070:2;;;5123:6;5115;5108:22;5070:2;5160:9;5154:16;5179:30;5203:5;5179:30;:::i;5244:342::-;5313:6;5366:2;5354:9;5345:7;5341:23;5337:32;5334:2;;;5387:6;5379;5372:22;5334:2;5432:9;5419:23;5465:18;5457:6;5454:30;5451:2;;;5502:6;5494;5487:22;5451:2;5530:50;5572:7;5563:6;5552:9;5548:22;5530:50;:::i;5591:190::-;5650:6;5703:2;5691:9;5682:7;5678:23;5674:32;5671:2;;;5724:6;5716;5709:22;5671:2;-1:-1:-1;5752:23:1;;5661:120;-1:-1:-1;5661:120:1:o;5786:671::-;5907:6;5915;5923;5976:2;5964:9;5955:7;5951:23;5947:32;5944:2;;;5997:6;5989;5982:22;5944:2;6038:9;6025:23;6015:33;;6099:2;6088:9;6084:18;6071:32;6122:18;6163:2;6155:6;6152:14;6149:2;;;6184:6;6176;6169:22;6149:2;6212:56;6260:7;6251:6;6240:9;6236:22;6212:56;:::i;:::-;6202:66;;6321:2;6310:9;6306:18;6293:32;6277:48;;6350:2;6340:8;6337:16;6334:2;;;6371:6;6363;6356:22;6334:2;;6399:52;6443:7;6432:8;6421:9;6417:24;6399:52;:::i;:::-;6389:62;;;5934:523;;;;;:::o;6462:410::-;6540:6;6548;6601:2;6589:9;6580:7;6576:23;6572:32;6569:2;;;6622:6;6614;6607:22;6569:2;6663:9;6650:23;6640:33;;6724:2;6713:9;6709:18;6696:32;6751:18;6743:6;6740:30;6737:2;;;6788:6;6780;6773:22;6737:2;6816:50;6858:7;6849:6;6838:9;6834:22;6816:50;:::i;6877:258::-;6945:6;6953;7006:2;6994:9;6985:7;6981:23;6977:32;6974:2;;;7027:6;7019;7012:22;6974:2;-1:-1:-1;;7055:23:1;;;7125:2;7110:18;;;7097:32;;-1:-1:-1;6964:171:1:o;7140:257::-;7181:3;7219:5;7213:12;7246:6;7241:3;7234:19;7262:63;7318:6;7311:4;7306:3;7302:14;7295:4;7288:5;7284:16;7262:63;:::i;:::-;7379:2;7358:15;-1:-1:-1;;7354:29:1;7345:39;;;;7386:4;7341:50;;7189:208;-1:-1:-1;;7189:208:1:o;7402:664::-;7629:3;7667:6;7661:13;7683:53;7729:6;7724:3;7717:4;7709:6;7705:17;7683:53;:::i;:::-;7799:13;;7758:16;;;;7821:57;7799:13;7758:16;7855:4;7843:17;;7821:57;:::i;:::-;7945:13;;7900:20;;;7967:57;7945:13;7900:20;8001:4;7989:17;;7967:57;:::i;:::-;8040:20;;7637:429;-1:-1:-1;;;;;7637:429:1:o;8071:1052::-;8394:3;8432:6;8426:13;8448:53;8494:6;8489:3;8482:4;8474:6;8470:17;8448:53;:::i;:::-;8564:13;;8523:16;;;;8586:57;8564:13;8523:16;8620:4;8608:17;;8586:57;:::i;:::-;8710:13;;8665:20;;;8732:57;8710:13;8665:20;8766:4;8754:17;;8732:57;:::i;:::-;8856:13;;8811:20;;;8878:57;8856:13;8811:20;8912:4;8900:17;;8878:57;:::i;:::-;9002:13;;8957:20;;;9024:57;9002:13;8957:20;9058:4;9046:17;;9024:57;:::i;:::-;9097:20;;8402:721;-1:-1:-1;;;;;;;8402:721:1:o;9128:1449::-;9547:3;9585:6;9579:13;9611:4;9624:51;9668:6;9663:3;9658:2;9650:6;9646:15;9624:51;:::i;:::-;9738:13;;9697:16;;;;9760:55;9738:13;9697:16;9782:15;;;9760:55;:::i;:::-;9882:13;;9837:20;;;9904:55;9882:13;9837:20;9926:15;;;9904:55;:::i;:::-;10026:13;;9981:20;;;10048:55;10026:13;9981:20;10070:15;;;10048:55;:::i;:::-;10170:13;;10125:20;;;10192:55;10170:13;10125:20;10214:15;;;10192:55;:::i;:::-;10314:13;;10269:20;;;10336:55;10314:13;10269:20;10358:15;;;10336:55;:::i;:::-;10458:13;;10413:20;;;10480:55;10458:13;10413:20;10502:15;;;10480:55;:::i;:::-;10551:20;;;;;9555:1022;-1:-1:-1;;;;;;;;;;9555:1022:1:o;10582:1776::-;11097:3;11135:6;11129:13;11151:53;11197:6;11192:3;11185:4;11177:6;11173:17;11151:53;:::i;:::-;11235:6;11229:13;11251:68;11310:8;11301:6;11296:3;11292:16;11285:4;11277:6;11273:17;11251:68;:::i;:::-;11397:13;;11345:16;;;11341:31;;11419:57;11397:13;11341:31;11453:4;11441:17;;11419:57;:::i;:::-;11507:6;11501:13;11523:72;11586:8;11575;11568:5;11564:20;11557:4;11549:6;11545:17;11523:72;:::i;:::-;11677:13;;11621:20;;;;11617:35;;11699:57;11677:13;11617:35;11733:4;11721:17;;11699:57;:::i;:::-;11787:6;11781:13;11803:72;11866:8;11855;11848:5;11844:20;11837:4;11829:6;11825:17;11803:72;:::i;:::-;11957:13;;11901:20;;;;11897:35;;11979:57;11957:13;11897:35;12013:4;12001:17;;11979:57;:::i;:::-;12103:13;;12058:20;;;12125:57;12103:13;12058:20;12159:4;12147:17;;12125:57;:::i;:::-;12213:6;12207:13;12229:72;12292:8;12281;12274:5;12270:20;12263:4;12255:6;12251:17;12229:72;:::i;:::-;12321:20;;12317:35;;11105:1253;-1:-1:-1;;;;;;;;;;;11105:1253:1:o;12363:1432::-;-1:-1:-1;;;13012:57:1;;13092:13;;12994:3;;13114:62;13092:13;13164:2;13155:12;;13148:4;13136:17;;13114:62;:::i;:::-;-1:-1:-1;;;13235:2:1;13195:16;;;13227:11;;;13220:71;13316:13;;13338:63;13316:13;13387:2;13379:11;;13372:4;13360:17;;13338:63;:::i;:::-;13466:66;13461:2;13420:17;;;;13453:11;;;13446:87;-1:-1:-1;;;13557:2:1;13549:11;;13542:30;13597:13;;13619:63;13597:13;13668:2;13660:11;;13653:4;13641:17;;13619:63;:::i;:::-;-1:-1:-1;;;13742:2:1;13701:17;;;;13734:11;;;13727:35;13786:2;13778:11;;13002:793;-1:-1:-1;;;;;13002:793:1:o;13800:648::-;14163:34;14158:3;14151:47;-1:-1:-1;;;14223:2:1;14218:3;14214:12;14207:30;14133:3;14266:6;14260:13;14282:60;14335:6;14330:2;14325:3;14321:12;14316:2;14308:6;14304:15;14282:60;:::i;:::-;-1:-1:-1;;;14401:2:1;14361:16;;;;14393:11;;;14386:29;-1:-1:-1;14439:2:1;14431:11;;14141:307;-1:-1:-1;14141:307:1:o;14453:448::-;14715:31;14710:3;14703:44;14685:3;14776:6;14770:13;14792:62;14847:6;14842:2;14837:3;14833:12;14826:4;14818:6;14814:17;14792:62;:::i;:::-;14874:16;;;;14892:2;14870:25;;14693:208;-1:-1:-1;;14693:208:1:o;14906:606::-;15269:29;15264:3;15257:42;15239:3;15328:6;15322:13;15344:62;15399:6;15394:2;15389:3;15385:12;15378:4;15370:6;15366:17;15344:62;:::i;:::-;-1:-1:-1;;;15465:2:1;15425:16;;;;15457:11;;;15450:29;-1:-1:-1;15503:2:1;15495:11;;15247:265;-1:-1:-1;15247:265:1:o;15725:488::-;-1:-1:-1;;;;;15994:15:1;;;15976:34;;16046:15;;16041:2;16026:18;;16019:43;16093:2;16078:18;;16071:34;;;16141:3;16136:2;16121:18;;16114:31;;;15919:4;;16162:45;;16187:19;;16179:6;16162:45;:::i;:::-;16154:53;15928:285;-1:-1:-1;;;;;;15928:285:1:o;16410:219::-;16559:2;16548:9;16541:21;16522:4;16579:44;16619:2;16608:9;16604:18;16596:6;16579:44;:::i;17399:414::-;17601:2;17583:21;;;17640:2;17620:18;;;17613:30;17679:34;17674:2;17659:18;;17652:62;-1:-1:-1;;;17745:2:1;17730:18;;17723:48;17803:3;17788:19;;17573:240::o;18582:398::-;18784:2;18766:21;;;18823:2;18803:18;;;18796:30;18862:34;18857:2;18842:18;;18835:62;-1:-1:-1;;;18928:2:1;18913:18;;18906:32;18970:3;18955:19;;18756:224::o;20499:414::-;20701:2;20683:21;;;20740:2;20720:18;;;20713:30;20779:34;20774:2;20759:18;;20752:62;-1:-1:-1;;;20845:2:1;20830:18;;20823:48;20903:3;20888:19;;20673:240::o;22938:356::-;23140:2;23122:21;;;23159:18;;;23152:30;23218:34;23213:2;23198:18;;23191:62;23285:2;23270:18;;23112:182::o;24515:413::-;24717:2;24699:21;;;24756:2;24736:18;;;24729:30;24795:34;24790:2;24775:18;;24768:62;-1:-1:-1;;;24861:2:1;24846:18;;24839:47;24918:3;24903:19;;24689:239::o;25346:355::-;25548:2;25530:21;;;25587:2;25567:18;;;25560:30;25626:33;25621:2;25606:18;;25599:61;25692:2;25677:18;;25520:181::o;25888:128::-;25928:3;25959:1;25955:6;25952:1;25949:13;25946:2;;;25965:18;;:::i;:::-;-1:-1:-1;26001:9:1;;25936:80::o;26021:120::-;26061:1;26087;26077:2;;26092:18;;:::i;:::-;-1:-1:-1;26126:9:1;;26067:74::o;26146:168::-;26186:7;26252:1;26248;26244:6;26240:14;26237:1;26234:21;26229:1;26222:9;26215:17;26211:45;26208:2;;;26259:18;;:::i;:::-;-1:-1:-1;26299:9:1;;26198:116::o;26319:125::-;26359:4;26387:1;26384;26381:8;26378:2;;;26392:18;;:::i;:::-;-1:-1:-1;26429:9:1;;26368:76::o;26449:258::-;26521:1;26531:113;26545:6;26542:1;26539:13;26531:113;;;26621:11;;;26615:18;26602:11;;;26595:39;26567:2;26560:10;26531:113;;;26662:6;26659:1;26656:13;26653:2;;;-1:-1:-1;;26697:1:1;26679:16;;26672:27;26502:205::o;26712:380::-;26791:1;26787:12;;;;26834;;;26855:2;;26909:4;26901:6;26897:17;26887:27;;26855:2;26962;26954:6;26951:14;26931:18;26928:38;26925:2;;;27008:10;27003:3;26999:20;26996:1;26989:31;27043:4;27040:1;27033:15;27071:4;27068:1;27061:15;26925:2;;26767:325;;;:::o;27097:135::-;27136:3;-1:-1:-1;;27157:17:1;;27154:2;;;27177:18;;:::i;:::-;-1:-1:-1;27224:1:1;27213:13;;27144:88::o;27237:112::-;27269:1;27295;27285:2;;27300:18;;:::i;:::-;-1:-1:-1;27334:9:1;;27275:74::o;27354:127::-;27415:10;27410:3;27406:20;27403:1;27396:31;27446:4;27443:1;27436:15;27470:4;27467:1;27460:15;27486:127;27547:10;27542:3;27538:20;27535:1;27528:31;27578:4;27575:1;27568:15;27602:4;27599:1;27592:15;27618:127;27679:10;27674:3;27670:20;27667:1;27660:31;27710:4;27707:1;27700:15;27734:4;27731:1;27724:15;27750:131;-1:-1:-1;;;;;;27824:32:1;;27814:43;;27804:2;;27871:1;27868;27861:12
Swarm Source
ipfs://5196e53c674f89b1b4dd1644d641f2319ef45105a73573e87652a40a7610a89a
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.