ETH Price: $3,330.56 (-1.70%)
Gas: 19 Gwei

Token

 

Overview

Max Total Supply

0

Holders

2,821

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0x194feaadb5972dd0451baca1300921c730062e77
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MerchMintPass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 11 of 13: MerchMintPass.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.9;

import "./ERC1155.sol";
import "./IERC1155.sol";
import "./Ownable.sol";
import "./Strings.sol";
import "./ECDSA.sol";
import "./EIP712.sol";

contract MerchMintPass is ERC1155, EIP712, Ownable {
	using Strings for string;

	mapping(uint256 => uint256) private _totalSupply;

 	 //signature
    string private constant SINGING_DOMAIN = "MINTPASS";
    string private constant SIGNATURE_VERSION = "1";

	//constants	
	uint256 public burnedCounter;
	uint256 public totalMinted;
    uint256 public maxMintPerWallet = 1;
    uint256 public maxMintPerWalletPuzzler = 1;

	//mappings
	mapping(uint256 => bool) private soldOut;
    mapping(address => uint256) private mintCountMap;
	mapping(address => uint256) private allowedMintCountMap;
    mapping(address => uint256) private mintCountMapPuzzler;
	mapping(address => uint256) private allowedMintCountMapPuzzler;

	uint256 constant level1 = 1;
	uint256 constant level2 = 2;
	uint256 constant level3 = 3;
	uint256 constant puzzler = 4;

	event Redeemed(address indexed from, uint256 id, uint256 uuid);

	string public _baseURI;
	string public _contractURI;

	bool saleLive = false;
	bool burnLive = false;

	constructor() 
	ERC1155(_baseURI) 
    EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) 
	{}

	function mintLevel1(uint256 qty, string memory name, bytes memory signature) public {
	    require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
		require(saleLive, "sale is not live");
		require(soldOut[level1] == false, "item out of stock");
        require(allowedMintCount(msg.sender) >= 1,"You minted too many");
	
		totalMinted = totalMinted + qty;
		_totalSupply[level1] = _totalSupply[level1] + qty;
		_mint(msg.sender, level1, qty, "0x0000");
		updateMintCount(msg.sender);
	}

	function mintLevel2(uint256 qty, string memory name, bytes memory signature) public {
	    require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
		require(saleLive, "sale is not live");
		require(soldOut[level2] == false, "item out of stock");
        require(allowedMintCount(msg.sender) >= 1,"You minted too many");
		
		totalMinted = totalMinted + qty;
		_totalSupply[level2] = _totalSupply[level2] + qty;
		_mint(msg.sender, level1, qty, "0x0000");
		_mint(msg.sender, level2, qty, "0x0000");
		updateMintCount(msg.sender);
	}

    function mintLevel3(uint256 qty, string memory name, bytes memory signature) public {
	    require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
		require(saleLive, "sale is not live");
		require(soldOut[level3] == false, "item out of stock");
	    require(allowedMintCount(msg.sender) >= 1,"You already minted");
		
		totalMinted = totalMinted + qty;
		_totalSupply[level3] = _totalSupply[level3] + qty;
		_mint(msg.sender, level1, qty, "0x0000");
		_mint(msg.sender, level2, qty, "0x0000");
		_mint(msg.sender, level3, qty, "0x0000");
		updateMintCount(msg.sender);
	}

	function mintPuzzler(uint256 qty, string memory name, bytes memory signature) public {
	    require(check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
		require(saleLive, "sale is not live");
		require(soldOut[puzzler] == false, "item out of stock");
	    require(allowedMintCountPuzzler(msg.sender) >= 1,"You already minted");
		
		totalMinted = totalMinted + qty;
		_totalSupply[puzzler] = _totalSupply[puzzler] + qty;
		_mint(msg.sender, puzzler, qty, "0x0000");
		updateMintCountPuzzler(msg.sender);
	}

	//redeem function
	function burn(
		address account,
		uint256 id,
		uint256 qty,
		uint256 uuid
	) public virtual {
		require(burnLive, "burn is not enabled");
		require(
			account == _msgSender() || isApprovedForAll(account, _msgSender()),
			"ERC1155: caller is not owner nor approved"
		);
		require(balanceOf(account, id) >= qty, "balance too low");

		burnedCounter = burnedCounter + qty;
		_burn(account, id, qty);
		emit Redeemed(account, id, uuid);
	}
	
    function check(string memory name, bytes memory signature) public view returns (address) {
        return _verify( name, signature);
    }

    function _verify(string memory name, bytes memory signature) internal view returns (address) {
        bytes32 digest = _hash(name);
        return ECDSA.recover(digest, signature);
    }

    function _hash(string memory name) internal view returns (bytes32) {
        return _hashTypedDataV4(keccak256(abi.encode(
            keccak256("Web3Struct(string name)"),
            keccak256(bytes(name))
        )));
	}

	function setBaseURI(string memory newuri) public onlyOwner {
		_baseURI = newuri;
	}
	function setContractURI(string memory newuri) public onlyOwner {
		_contractURI = newuri;
	}

	function uri(uint256 tokenId) public view override returns (string memory) {
		return string(abi.encodePacked(_baseURI, uint2str(tokenId)));
	}
	function contractURI() public view returns (string memory) {
		return _contractURI;
	}
	function uint2str(uint256 _i) internal pure returns (string memory _uintAsString) {
		if (_i == 0) {return "0";}
			uint256 j = _i;
			uint256 len;
		while (j != 0) {len++; j /= 10;}
			bytes memory bstr = new bytes(len);
			uint256 k = len;
		while (_i != 0) {
			k = k - 1;
			uint8 temp = (48 + uint8(_i - (_i / 10) * 10));
			bytes1 b1 = bytes1(temp);
			bstr[k] = b1;
			_i /= 10;
		}
		return string(bstr);
	}

	function allowedMintCount(address minter) public view returns (uint256) {
    return maxMintPerWallet - mintCountMap[minter];
     }
	
	function updateMintCount(address minter) private {
    mintCountMap[minter] += 1;
    }

	function allowedMintCountPuzzler(address minter) public view returns (uint256) {
    return maxMintPerWalletPuzzler - mintCountMapPuzzler[minter];
    }
	
	function updateMintCountPuzzler(address minter) private {
    mintCountMapPuzzler[minter] += 1;
    }

	function totalSupply(uint256 id) public view virtual returns (uint256) {
		return _totalSupply[id];
	}

	function exists(uint256 id) public view virtual returns (bool) {
		return totalSupply(id) > 0;
	}

	// sets soldout
	function setSoldOut(uint256 _id, bool isSoldOut) external onlyOwner {
		soldOut[_id] = isSoldOut;
	}

	// enables sales
	function setSaleLive(bool _saleLive) external onlyOwner {
		saleLive = _saleLive;
	}

	//max switch
	function setMaxPerWallet(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWallet = _newMaxMintAmount;
	}
	function setMaxPerWalletPuzzler(uint256 _newMaxMintAmount) public onlyOwner {	
	maxMintPerWalletPuzzler = _newMaxMintAmount;
	}

	// enables burn
	function setBurnLive(bool _burnLive) external onlyOwner {
		burnLive = _burnLive;
	}

	function withdrawToOwner() external onlyOwner {
		payable(msg.sender).transfer(address(this).balance);
	}
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 13: ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "./Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 13: EIP712.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

pragma solidity ^0.8.0;

import "./ECDSA.sol";

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

File 5 of 13: ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 7 of 13: IERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 13: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 9 of 13: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"uuid","type":"uint256"}],"name":"Redeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"_baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountPuzzler","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"uint256","name":"uuid","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"check","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWalletPuzzler","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintLevel1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintLevel2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintLevel3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPuzzler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_burnLive","type":"bool"}],"name":"setBurnLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletPuzzler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleLive","type":"bool"}],"name":"setSaleLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bool","name":"isSoldOut","type":"bool"}],"name":"setSoldOut","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawToOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

610140604052600160075560016008556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200005257600080fd5b506040518060400160405280600881526020017f4d494e54504153530000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f3100000000000000000000000000000000000000000000000000000000000000815250600e8054620000ce9062000441565b80601f0160208091040260200160405190810160405280929190818152602001828054620000fc9062000441565b80156200014d5780601f1062000121576101008083540402835291602001916200014d565b820191906000526020600020905b8154815290600101906020018083116200012f57829003601f168201915b505050505062000163816200023c60201b60201c565b5060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001cd8184846200025860201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050620002366200022a6200029460201b60201c565b6200029c60201b60201c565b6200054f565b80600290805190602001906200025492919062000362565b5050565b6000838383463060405160200162000275959493929190620004f2565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003709062000441565b90600052602060002090601f016020900481019282620003945760008555620003e0565b82601f10620003af57805160ff1916838001178555620003e0565b82800160010185558215620003e0579182015b82811115620003df578251825591602001919060010190620003c2565b5b509050620003ef9190620003f3565b5090565b5b808211156200040e576000816000905550600101620003f4565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045a57607f821691505b6020821081141562000471576200047062000412565b5b50919050565b6000819050919050565b6200048c8162000477565b82525050565b6000819050919050565b620004a78162000492565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004da82620004ad565b9050919050565b620004ec81620004cd565b82525050565b600060a08201905062000509600083018862000481565b62000518602083018762000481565b62000527604083018662000481565b6200053660608301856200049c565b620005456080830184620004e1565b9695505050505050565b60805160a05160c05160e0516101005161012051615a1e6200059f60003960006135f30152600061363501526000613614015260006135490152600061359f015260006135c80152615a1e6000f3fe608060405234801561001057600080fd5b506004361061021b5760003560e01c80638da5cb5b11610125578063c0e72740116100ad578063e268e4d31161007c578063e268e4d314610622578063e8a3d4851461063e578063e985e9c51461065c578063f242432a1461068c578063f2fde38b146106a85761021b565b8063c0e72740146105ae578063cbc3f703146105cc578063cdb712d8146105e8578063de7bf0a2146106065761021b565b8063a8c092d0116100f4578063a8c092d0146104f6578063b228d92514610514578063b4c8b2c814610532578063bb660c0a1461054e578063bd85b0391461057e5761021b565b80638da5cb5b14610482578063938e3d7b146104a0578063a22cb465146104bc578063a2309ff8146104d85761021b565b80633cb40e16116101a85780634f558e79116101775780634f558e79146103f257806355f804b314610422578063715018a61461043e578063743976a0146104485780638282b011146104665761021b565b80633cb40e161461035857806340e304b81461036257806348808c10146103925780634e1273f4146103c25761021b565b806320cc1519116101ef57806320cc1519146102cc5780632eb2c2d6146102e85780633708a2e5146103045780633c4c7bb4146103205780633c6c4d611461033c5761021b565b8062fdd58e1461022057806301ffc9a7146102505780630e89341c146102805780631ff8a0dc146102b0575b600080fd5b61023a60048036038101906102359190613983565b6106c4565b60405161024791906139d2565b60405180910390f35b61026a60048036038101906102659190613a45565b61078d565b6040516102779190613a8d565b60405180910390f35b61029a60048036038101906102959190613aa8565b61086f565b6040516102a79190613b6e565b60405180910390f35b6102ca60048036038101906102c59190613d66565b6108a3565b005b6102e660048036038101906102e19190613e1d565b610b3d565b005b61030260048036038101906102fd9190613f25565b610be8565b005b61031e60048036038101906103199190613ff4565b610c89565b005b61033a60048036038101906103359190613ff4565b610d22565b005b61035660048036038101906103519190613aa8565b610dbb565b005b610360610e41565b005b61037c60048036038101906103779190614021565b610f06565b60405161038991906139d2565b60405180910390f35b6103ac60048036038101906103a7919061404e565b610f5c565b6040516103b991906140d5565b60405180910390f35b6103dc60048036038101906103d791906141b3565b610f70565b6040516103e991906142e9565b60405180910390f35b61040c60048036038101906104079190613aa8565b611089565b6040516104199190613a8d565b60405180910390f35b61043c6004803603810190610437919061430b565b61109d565b005b610446611133565b005b6104506111bb565b60405161045d9190613b6e565b60405180910390f35b610480600480360381019061047b9190613d66565b611249565b005b61048a6114a1565b60405161049791906140d5565b60405180910390f35b6104ba60048036038101906104b5919061430b565b6114cb565b005b6104d660048036038101906104d19190614354565b611561565b005b6104e06116e2565b6040516104ed91906139d2565b60405180910390f35b6104fe6116e8565b60405161050b91906139d2565b60405180910390f35b61051c6116ee565b60405161052991906139d2565b60405180910390f35b61054c60048036038101906105479190613d66565b6116f4565b005b61056860048036038101906105639190614021565b61190a565b60405161057591906139d2565b60405180910390f35b61059860048036038101906105939190613aa8565b611960565b6040516105a591906139d2565b60405180910390f35b6105b661197d565b6040516105c39190613b6e565b60405180910390f35b6105e660048036038101906105e19190613d66565b611a0b565b005b6105f0611c21565b6040516105fd91906139d2565b60405180910390f35b610620600480360381019061061b9190614394565b611c27565b005b61063c60048036038101906106379190613aa8565b611dc4565b005b610646611e4a565b6040516106539190613b6e565b60405180910390f35b610676600480360381019061067191906143fb565b611edc565b6040516106839190613a8d565b60405180910390f35b6106a660048036038101906106a1919061443b565b611f70565b005b6106c260048036038101906106bd9190614021565b612011565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90614544565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610868575061086782612109565b5b9050919050565b6060600e61087c83612173565b60405160200161088d929190614695565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff166108c48383610f5c565b73ffffffffffffffffffffffffffffffffffffffff161461091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190614705565b60405180910390fd5b601060009054906101000a900460ff16610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090614771565b60405180910390fd5b60001515600960006003815260200190815260200160002060009054906101000a900460ff161515146109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c8906147dd565b60405180910390fd5b60016109dc3361190a565b1015610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490614849565b60405180910390fd5b82600654610a2b9190614898565b60068190555082600460006003815260200190815260200160002054610a519190614898565b600460006003815260200190815260200160002081905550610aab336001856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b610aed336002856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b610b2f336003856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b610b3833612492565b505050565b610b456124ec565b73ffffffffffffffffffffffffffffffffffffffff16610b636114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb09061493a565b60405180910390fd5b806009600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610bf06124ec565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c365750610c3585610c306124ec565b611edc565b5b610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906149cc565b60405180910390fd5b610c8285858585856124f4565b5050505050565b610c916124ec565b73ffffffffffffffffffffffffffffffffffffffff16610caf6114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc9061493a565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610d2a6124ec565b73ffffffffffffffffffffffffffffffffffffffff16610d486114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061493a565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b610dc36124ec565b73ffffffffffffffffffffffffffffffffffffffff16610de16114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e9061493a565b60405180910390fd5b8060088190555050565b610e496124ec565b73ffffffffffffffffffffffffffffffffffffffff16610e676114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb49061493a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f03573d6000803e3d6000fd5b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600854610f5591906149ec565b9050919050565b6000610f688383612808565b905092915050565b60608151835114610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90614a92565b60405180910390fd5b6000835167ffffffffffffffff811115610fd357610fd2613b9a565b5b6040519080825280602002602001820160405280156110015781602001602082028036833780820191505090505b50905060005b845181101561107e5761104e85828151811061102657611025614ab2565b5b602002602001015185838151811061104157611040614ab2565b5b60200260200101516106c4565b82828151811061106157611060614ab2565b5b6020026020010181815250508061107790614ae1565b9050611007565b508091505092915050565b60008061109583611960565b119050919050565b6110a56124ec565b73ffffffffffffffffffffffffffffffffffffffff166110c36114a1565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061493a565b60405180910390fd5b80600e908051906020019061112f929190613838565b5050565b61113b6124ec565b73ffffffffffffffffffffffffffffffffffffffff166111596114a1565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a69061493a565b60405180910390fd5b6111b96000612829565b565b600e80546111c890614593565b80601f01602080910402602001604051908101604052809291908181526020018280546111f490614593565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff1661126a8383610f5c565b73ffffffffffffffffffffffffffffffffffffffff16146112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790614705565b60405180910390fd5b601060009054906101000a900460ff1661130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614771565b60405180910390fd5b60001515600960006002815260200190815260200160002060009054906101000a900460ff16151514611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906147dd565b60405180910390fd5b60016113823361190a565b10156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90614b76565b60405180910390fd5b826006546113d19190614898565b600681905550826004600060028152602001908152602001600020546113f79190614898565b600460006002815260200190815260200160002081905550611451336001856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b611493336002856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b61149c33612492565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d36124ec565b73ffffffffffffffffffffffffffffffffffffffff166114f16114a1565b73ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e9061493a565b60405180910390fd5b80600f908051906020019061155d929190613838565b5050565b8173ffffffffffffffffffffffffffffffffffffffff166115806124ec565b73ffffffffffffffffffffffffffffffffffffffff1614156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614c08565b60405180910390fd5b80600160006115e46124ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116916124ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116d69190613a8d565b60405180910390a35050565b60065481565b60085481565b60075481565b3373ffffffffffffffffffffffffffffffffffffffff166117158383610f5c565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290614705565b60405180910390fd5b601060009054906101000a900460ff166117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190614771565b60405180910390fd5b60001515600960006004815260200190815260200160002060009054906101000a900460ff16151514611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906147dd565b60405180910390fd5b600161182d33610f06565b101561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590614849565b60405180910390fd5b8260065461187c9190614898565b600681905550826004600060048152602001908152602001600020546118a29190614898565b6004600060048152602001908152602001600020819055506118fc336004856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b611905336128ef565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460075461195991906149ec565b9050919050565b600060046000838152602001908152602001600020549050919050565b600f805461198a90614593565b80601f01602080910402602001604051908101604052809291908181526020018280546119b690614593565b8015611a035780601f106119d857610100808354040283529160200191611a03565b820191906000526020600020905b8154815290600101906020018083116119e657829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff16611a2c8383610f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990614705565b60405180910390fd5b601060009054906101000a900460ff16611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614771565b60405180910390fd5b60001515600960006001815260200190815260200160002060009054906101000a900460ff16151514611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b30906147dd565b60405180910390fd5b6001611b443361190a565b1015611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614b76565b60405180910390fd5b82600654611b939190614898565b60068190555082600460006001815260200190815260200160002054611bb99190614898565b600460006001815260200190815260200160002081905550611c13336001856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b611c1c33612492565b505050565b60055481565b601060019054906101000a900460ff16611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90614c74565b60405180910390fd5b611c7e6124ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cc45750611cc384611cbe6124ec565b611edc565b5b611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614d06565b60405180910390fd5b81611d0e85856106c4565b1015611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690614d72565b60405180910390fd5b81600554611d5d9190614898565b600581905550611d6e848484612949565b8373ffffffffffffffffffffffffffffffffffffffff167ff3a670cd3af7d64b488926880889d08a8585a138ff455227af6737339a1ec2628483604051611db6929190614d92565b60405180910390a250505050565b611dcc6124ec565b73ffffffffffffffffffffffffffffffffffffffff16611dea6114a1565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061493a565b60405180910390fd5b8060078190555050565b6060600f8054611e5990614593565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8590614593565b8015611ed25780601f10611ea757610100808354040283529160200191611ed2565b820191906000526020600020905b815481529060010190602001808311611eb557829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f786124ec565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611fbe5750611fbd85611fb86124ec565b611edc565b5b611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490614d06565b60405180910390fd5b61200a8585858585612b66565b5050505050565b6120196124ec565b73ffffffffffffffffffffffffffffffffffffffff166120376114a1565b73ffffffffffffffffffffffffffffffffffffffff161461208d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120849061493a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490614e2d565b60405180910390fd5b61210681612829565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156121bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f7565b600082905060005b600082146121ed5780806121d690614ae1565b915050600a826121e69190614e7c565b91506121c3565b60008167ffffffffffffffff81111561220957612208613b9a565b5b6040519080825280601f01601f19166020018201604052801561223b5781602001600182028036833780820191505090505b50905060008290505b600086146122ef5760018161225991906149ec565b90506000600a808861226b9190614e7c565b6122759190614ead565b8761228091906149ec565b603061228c9190614f14565b905060008160f81b9050808484815181106122aa576122a9614ab2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886122e69190614e7c565b97505050612244565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614fbd565b60405180910390fd5b60006123766124ec565b90506123978160008761238888612de8565b61239188612de8565b87612e62565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190614898565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612474929190614d92565b60405180910390a461248b81600087878787612e6a565b5050505050565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e29190614898565b9250508190555050565b600033905090565b8151835114612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f9061504f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259f906150e1565b60405180910390fd5b60006125b26124ec565b90506125c2818787878787612e62565b60005b84518110156127735760008582815181106125e3576125e2614ab2565b5b60200260200101519050600085838151811061260257612601614ab2565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90615173565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127589190614898565b925050819055505050508061276c90614ae1565b90506125c5565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127ea929190615193565b60405180910390a4612800818787878787613051565b505050505050565b60008061281484613238565b90506128208184613299565b91505092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293f9190614898565b9250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b09061523c565b60405180910390fd5b60006129c36124ec565b90506129f3818560006129d587612de8565b6129de87612de8565b60405180602001604052806000815250612e62565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a81906152ce565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612b57929190614d92565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd906150e1565b60405180910390fd5b6000612be06124ec565b9050612c00818787612bf188612de8565b612bfa88612de8565b87612e62565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8e90615173565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d4c9190614898565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612dc9929190614d92565b60405180910390a4612ddf828888888888612e6a565b50505050505050565b60606000600167ffffffffffffffff811115612e0757612e06613b9a565b5b604051908082528060200260200182016040528015612e355781602001602082028036833780820191505090505b5090508281600081518110612e4d57612e4c614ab2565b5b60200260200101818152505080915050919050565b505050505050565b612e898473ffffffffffffffffffffffffffffffffffffffff166132c0565b15613049578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612ecf959493929190615343565b602060405180830381600087803b158015612ee957600080fd5b505af1925050508015612f1a57506040513d601f19601f82011682018060405250810190612f1791906153b2565b60015b612fc057612f266153ec565b806308c379a01415612f835750612f3b61540e565b80612f465750612f85565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a9190613b6e565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb790615516565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e906155a8565b60405180910390fd5b505b505050505050565b6130708473ffffffffffffffffffffffffffffffffffffffff166132c0565b15613230578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016130b69594939291906155c8565b602060405180830381600087803b1580156130d057600080fd5b505af192505050801561310157506040513d601f19601f820116820180604052508101906130fe91906153b2565b60015b6131a75761310d6153ec565b806308c379a0141561316a575061312261540e565b8061312d575061316c565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131619190613b6e565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319e90615516565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461322e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613225906155a8565b60405180910390fd5b505b505050505050565b60006132927f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001613277929190615649565b604051602081830303815290604052805190602001206132d3565b9050919050565b60008060006132a885856132ed565b915091506132b581613370565b819250505092915050565b600080823b905060008111915050919050565b60006132e66132e0613545565b8361365f565b9050919050565b60008060418351141561332f5760008060006020860151925060408601519150606086015160001a905061332387828585613692565b94509450505050613369565b60408351141561336057600080602085015191506040850151905061335586838361379f565b935093505050613369565b60006002915091505b9250929050565b6000600481111561338457613383615672565b5b81600481111561339757613396615672565b5b14156133a257613542565b600160048111156133b6576133b5615672565b5b8160048111156133c9576133c8615672565b5b141561340a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613401906156ed565b60405180910390fd5b6002600481111561341e5761341d615672565b5b81600481111561343157613430615672565b5b1415613472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346990615759565b60405180910390fd5b6003600481111561348657613485615672565b5b81600481111561349957613498615672565b5b14156134da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d1906157eb565b60405180910390fd5b6004808111156134ed576134ec615672565b5b816004811115613500576134ff615672565b5b1415613541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135389061587d565b60405180910390fd5b5b50565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156135c157507f000000000000000000000000000000000000000000000000000000000000000046145b156135ee577f0000000000000000000000000000000000000000000000000000000000000000905061365c565b6136597f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006137fe565b90505b90565b6000828260405160200161367492919061590a565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136cd576000600391509150613796565b601b8560ff16141580156136e55750601c8560ff1614155b156136f7576000600491509150613796565b60006001878787876040516000815260200160405260405161371c9493929190615950565b6020604051602081039080840390855afa15801561373e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561378d57600060019250925050613796565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6137e29190614898565b90506137f087828885613692565b935093505050935093915050565b60008383834630604051602001613819959493929190615995565b6040516020818303038152906040528051906020012090509392505050565b82805461384490614593565b90600052602060002090601f01602090048101928261386657600085556138ad565b82601f1061387f57805160ff19168380011785556138ad565b828001600101855582156138ad579182015b828111156138ac578251825591602001919060010190613891565b5b5090506138ba91906138be565b5090565b5b808211156138d75760008160009055506001016138bf565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061391a826138ef565b9050919050565b61392a8161390f565b811461393557600080fd5b50565b60008135905061394781613921565b92915050565b6000819050919050565b6139608161394d565b811461396b57600080fd5b50565b60008135905061397d81613957565b92915050565b6000806040838503121561399a576139996138e5565b5b60006139a885828601613938565b92505060206139b98582860161396e565b9150509250929050565b6139cc8161394d565b82525050565b60006020820190506139e760008301846139c3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a22816139ed565b8114613a2d57600080fd5b50565b600081359050613a3f81613a19565b92915050565b600060208284031215613a5b57613a5a6138e5565b5b6000613a6984828501613a30565b91505092915050565b60008115159050919050565b613a8781613a72565b82525050565b6000602082019050613aa26000830184613a7e565b92915050565b600060208284031215613abe57613abd6138e5565b5b6000613acc8482850161396e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b0f578082015181840152602081019050613af4565b83811115613b1e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b4082613ad5565b613b4a8185613ae0565b9350613b5a818560208601613af1565b613b6381613b24565b840191505092915050565b60006020820190508181036000830152613b888184613b35565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bd282613b24565b810181811067ffffffffffffffff82111715613bf157613bf0613b9a565b5b80604052505050565b6000613c046138db565b9050613c108282613bc9565b919050565b600067ffffffffffffffff821115613c3057613c2f613b9a565b5b613c3982613b24565b9050602081019050919050565b82818337600083830152505050565b6000613c68613c6384613c15565b613bfa565b905082815260208101848484011115613c8457613c83613b95565b5b613c8f848285613c46565b509392505050565b600082601f830112613cac57613cab613b90565b5b8135613cbc848260208601613c55565b91505092915050565b600067ffffffffffffffff821115613ce057613cdf613b9a565b5b613ce982613b24565b9050602081019050919050565b6000613d09613d0484613cc5565b613bfa565b905082815260208101848484011115613d2557613d24613b95565b5b613d30848285613c46565b509392505050565b600082601f830112613d4d57613d4c613b90565b5b8135613d5d848260208601613cf6565b91505092915050565b600080600060608486031215613d7f57613d7e6138e5565b5b6000613d8d8682870161396e565b935050602084013567ffffffffffffffff811115613dae57613dad6138ea565b5b613dba86828701613c97565b925050604084013567ffffffffffffffff811115613ddb57613dda6138ea565b5b613de786828701613d38565b9150509250925092565b613dfa81613a72565b8114613e0557600080fd5b50565b600081359050613e1781613df1565b92915050565b60008060408385031215613e3457613e336138e5565b5b6000613e428582860161396e565b9250506020613e5385828601613e08565b9150509250929050565b600067ffffffffffffffff821115613e7857613e77613b9a565b5b602082029050602081019050919050565b600080fd5b6000613ea1613e9c84613e5d565b613bfa565b90508083825260208201905060208402830185811115613ec457613ec3613e89565b5b835b81811015613eed5780613ed9888261396e565b845260208401935050602081019050613ec6565b5050509392505050565b600082601f830112613f0c57613f0b613b90565b5b8135613f1c848260208601613e8e565b91505092915050565b600080600080600060a08688031215613f4157613f406138e5565b5b6000613f4f88828901613938565b9550506020613f6088828901613938565b945050604086013567ffffffffffffffff811115613f8157613f806138ea565b5b613f8d88828901613ef7565b935050606086013567ffffffffffffffff811115613fae57613fad6138ea565b5b613fba88828901613ef7565b925050608086013567ffffffffffffffff811115613fdb57613fda6138ea565b5b613fe788828901613d38565b9150509295509295909350565b60006020828403121561400a576140096138e5565b5b600061401884828501613e08565b91505092915050565b600060208284031215614037576140366138e5565b5b600061404584828501613938565b91505092915050565b60008060408385031215614065576140646138e5565b5b600083013567ffffffffffffffff811115614083576140826138ea565b5b61408f85828601613c97565b925050602083013567ffffffffffffffff8111156140b0576140af6138ea565b5b6140bc85828601613d38565b9150509250929050565b6140cf8161390f565b82525050565b60006020820190506140ea60008301846140c6565b92915050565b600067ffffffffffffffff82111561410b5761410a613b9a565b5b602082029050602081019050919050565b600061412f61412a846140f0565b613bfa565b9050808382526020820190506020840283018581111561415257614151613e89565b5b835b8181101561417b57806141678882613938565b845260208401935050602081019050614154565b5050509392505050565b600082601f83011261419a57614199613b90565b5b81356141aa84826020860161411c565b91505092915050565b600080604083850312156141ca576141c96138e5565b5b600083013567ffffffffffffffff8111156141e8576141e76138ea565b5b6141f485828601614185565b925050602083013567ffffffffffffffff811115614215576142146138ea565b5b61422185828601613ef7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142608161394d565b82525050565b60006142728383614257565b60208301905092915050565b6000602082019050919050565b60006142968261422b565b6142a08185614236565b93506142ab83614247565b8060005b838110156142dc5781516142c38882614266565b97506142ce8361427e565b9250506001810190506142af565b5085935050505092915050565b60006020820190508181036000830152614303818461428b565b905092915050565b600060208284031215614321576143206138e5565b5b600082013567ffffffffffffffff81111561433f5761433e6138ea565b5b61434b84828501613c97565b91505092915050565b6000806040838503121561436b5761436a6138e5565b5b600061437985828601613938565b925050602061438a85828601613e08565b9150509250929050565b600080600080608085870312156143ae576143ad6138e5565b5b60006143bc87828801613938565b94505060206143cd8782880161396e565b93505060406143de8782880161396e565b92505060606143ef8782880161396e565b91505092959194509250565b60008060408385031215614412576144116138e5565b5b600061442085828601613938565b925050602061443185828601613938565b9150509250929050565b600080600080600060a08688031215614457576144566138e5565b5b600061446588828901613938565b955050602061447688828901613938565b94505060406144878882890161396e565b93505060606144988882890161396e565b925050608086013567ffffffffffffffff8111156144b9576144b86138ea565b5b6144c588828901613d38565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061452e602b83613ae0565b9150614539826144d2565b604082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145ab57607f821691505b602082108114156145bf576145be614564565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546145f281614593565b6145fc81866145c5565b9450600182166000811461461757600181146146285761465b565b60ff1983168652818601935061465b565b614631856145d0565b60005b8381101561465357815481890152600182019150602081019050614634565b838801955050505b50505092915050565b600061466f82613ad5565b61467981856145c5565b9350614689818560208601613af1565b80840191505092915050565b60006146a182856145e5565b91506146ad8284614664565b91508190509392505050565b7f5369676e617475726520496e76616c6964000000000000000000000000000000600082015250565b60006146ef601183613ae0565b91506146fa826146b9565b602082019050919050565b6000602082019050818103600083015261471e816146e2565b9050919050565b7f73616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b600061475b601083613ae0565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f6974656d206f7574206f662073746f636b000000000000000000000000000000600082015250565b60006147c7601183613ae0565b91506147d282614791565b602082019050919050565b600060208201905081810360008301526147f6816147ba565b9050919050565b7f596f7520616c7265616479206d696e7465640000000000000000000000000000600082015250565b6000614833601283613ae0565b915061483e826147fd565b602082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148a38261394d565b91506148ae8361394d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148e3576148e2614869565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614924602083613ae0565b915061492f826148ee565b602082019050919050565b6000602082019050818103600083015261495381614917565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006149b6603283613ae0565b91506149c18261495a565b604082019050919050565b600060208201905081810360008301526149e5816149a9565b9050919050565b60006149f78261394d565b9150614a028361394d565b925082821015614a1557614a14614869565b5b828203905092915050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614a7c602983613ae0565b9150614a8782614a20565b604082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614aec8261394d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b1f57614b1e614869565b5b600182019050919050565b7f596f75206d696e74656420746f6f206d616e7900000000000000000000000000600082015250565b6000614b60601383613ae0565b9150614b6b82614b2a565b602082019050919050565b60006020820190508181036000830152614b8f81614b53565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614bf2602983613ae0565b9150614bfd82614b96565b604082019050919050565b60006020820190508181036000830152614c2181614be5565b9050919050565b7f6275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b6000614c5e601383613ae0565b9150614c6982614c28565b602082019050919050565b60006020820190508181036000830152614c8d81614c51565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614cf0602983613ae0565b9150614cfb82614c94565b604082019050919050565b60006020820190508181036000830152614d1f81614ce3565b9050919050565b7f62616c616e636520746f6f206c6f770000000000000000000000000000000000600082015250565b6000614d5c600f83613ae0565b9150614d6782614d26565b602082019050919050565b60006020820190508181036000830152614d8b81614d4f565b9050919050565b6000604082019050614da760008301856139c3565b614db460208301846139c3565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e17602683613ae0565b9150614e2282614dbb565b604082019050919050565b60006020820190508181036000830152614e4681614e0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e878261394d565b9150614e928361394d565b925082614ea257614ea1614e4d565b5b828204905092915050565b6000614eb88261394d565b9150614ec38361394d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614efc57614efb614869565b5b828202905092915050565b600060ff82169050919050565b6000614f1f82614f07565b9150614f2a83614f07565b92508260ff03821115614f4057614f3f614869565b5b828201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fa7602183613ae0565b9150614fb282614f4b565b604082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000615039602883613ae0565b915061504482614fdd565b604082019050919050565b600060208201905081810360008301526150688161502c565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006150cb602583613ae0565b91506150d68261506f565b604082019050919050565b600060208201905081810360008301526150fa816150be565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061515d602a83613ae0565b915061516882615101565b604082019050919050565b6000602082019050818103600083015261518c81615150565b9050919050565b600060408201905081810360008301526151ad818561428b565b905081810360208301526151c1818461428b565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615226602383613ae0565b9150615231826151ca565b604082019050919050565b6000602082019050818103600083015261525581615219565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006152b8602483613ae0565b91506152c38261525c565b604082019050919050565b600060208201905081810360008301526152e7816152ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615315826152ee565b61531f81856152f9565b935061532f818560208601613af1565b61533881613b24565b840191505092915050565b600060a08201905061535860008301886140c6565b61536560208301876140c6565b61537260408301866139c3565b61537f60608301856139c3565b8181036080830152615391818461530a565b90509695505050505050565b6000815190506153ac81613a19565b92915050565b6000602082840312156153c8576153c76138e5565b5b60006153d68482850161539d565b91505092915050565b60008160e01c9050919050565b600060033d111561540b5760046000803e6154086000516153df565b90505b90565b600060443d101561541e576154a1565b6154266138db565b60043d036004823e80513d602482011167ffffffffffffffff8211171561544e5750506154a1565b808201805167ffffffffffffffff81111561546c57505050506154a1565b80602083010160043d0385018111156154895750505050506154a1565b61549882602001850186613bc9565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615500603483613ae0565b915061550b826154a4565b604082019050919050565b6000602082019050818103600083015261552f816154f3565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615592602883613ae0565b915061559d82615536565b604082019050919050565b600060208201905081810360008301526155c181615585565b9050919050565b600060a0820190506155dd60008301886140c6565b6155ea60208301876140c6565b81810360408301526155fc818661428b565b90508181036060830152615610818561428b565b90508181036080830152615624818461530a565b90509695505050505050565b6000819050919050565b61564381615630565b82525050565b600060408201905061565e600083018561563a565b61566b602083018461563a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006156d7601883613ae0565b91506156e2826156a1565b602082019050919050565b60006020820190508181036000830152615706816156ca565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615743601f83613ae0565b915061574e8261570d565b602082019050919050565b6000602082019050818103600083015261577281615736565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006157d5602283613ae0565b91506157e082615779565b604082019050919050565b60006020820190508181036000830152615804816157c8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615867602283613ae0565b91506158728261580b565b604082019050919050565b600060208201905081810360008301526158968161585a565b9050919050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006158d36002836145c5565b91506158de8261589d565b600282019050919050565b6000819050919050565b6159046158ff82615630565b6158e9565b82525050565b6000615915826158c6565b915061592182856158f3565b60208201915061593182846158f3565b6020820191508190509392505050565b61594a81614f07565b82525050565b6000608082019050615965600083018761563a565b6159726020830186615941565b61597f604083018561563a565b61598c606083018461563a565b95945050505050565b600060a0820190506159aa600083018861563a565b6159b7602083018761563a565b6159c4604083018661563a565b6159d160608301856139c3565b6159de60808301846140c6565b969550505050505056fea26469706673582212206eec7f07e7beaa98735f7761c43bee87bc718fdfb34d3bde7b6e9e3923d389ad64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021b5760003560e01c80638da5cb5b11610125578063c0e72740116100ad578063e268e4d31161007c578063e268e4d314610622578063e8a3d4851461063e578063e985e9c51461065c578063f242432a1461068c578063f2fde38b146106a85761021b565b8063c0e72740146105ae578063cbc3f703146105cc578063cdb712d8146105e8578063de7bf0a2146106065761021b565b8063a8c092d0116100f4578063a8c092d0146104f6578063b228d92514610514578063b4c8b2c814610532578063bb660c0a1461054e578063bd85b0391461057e5761021b565b80638da5cb5b14610482578063938e3d7b146104a0578063a22cb465146104bc578063a2309ff8146104d85761021b565b80633cb40e16116101a85780634f558e79116101775780634f558e79146103f257806355f804b314610422578063715018a61461043e578063743976a0146104485780638282b011146104665761021b565b80633cb40e161461035857806340e304b81461036257806348808c10146103925780634e1273f4146103c25761021b565b806320cc1519116101ef57806320cc1519146102cc5780632eb2c2d6146102e85780633708a2e5146103045780633c4c7bb4146103205780633c6c4d611461033c5761021b565b8062fdd58e1461022057806301ffc9a7146102505780630e89341c146102805780631ff8a0dc146102b0575b600080fd5b61023a60048036038101906102359190613983565b6106c4565b60405161024791906139d2565b60405180910390f35b61026a60048036038101906102659190613a45565b61078d565b6040516102779190613a8d565b60405180910390f35b61029a60048036038101906102959190613aa8565b61086f565b6040516102a79190613b6e565b60405180910390f35b6102ca60048036038101906102c59190613d66565b6108a3565b005b6102e660048036038101906102e19190613e1d565b610b3d565b005b61030260048036038101906102fd9190613f25565b610be8565b005b61031e60048036038101906103199190613ff4565b610c89565b005b61033a60048036038101906103359190613ff4565b610d22565b005b61035660048036038101906103519190613aa8565b610dbb565b005b610360610e41565b005b61037c60048036038101906103779190614021565b610f06565b60405161038991906139d2565b60405180910390f35b6103ac60048036038101906103a7919061404e565b610f5c565b6040516103b991906140d5565b60405180910390f35b6103dc60048036038101906103d791906141b3565b610f70565b6040516103e991906142e9565b60405180910390f35b61040c60048036038101906104079190613aa8565b611089565b6040516104199190613a8d565b60405180910390f35b61043c6004803603810190610437919061430b565b61109d565b005b610446611133565b005b6104506111bb565b60405161045d9190613b6e565b60405180910390f35b610480600480360381019061047b9190613d66565b611249565b005b61048a6114a1565b60405161049791906140d5565b60405180910390f35b6104ba60048036038101906104b5919061430b565b6114cb565b005b6104d660048036038101906104d19190614354565b611561565b005b6104e06116e2565b6040516104ed91906139d2565b60405180910390f35b6104fe6116e8565b60405161050b91906139d2565b60405180910390f35b61051c6116ee565b60405161052991906139d2565b60405180910390f35b61054c60048036038101906105479190613d66565b6116f4565b005b61056860048036038101906105639190614021565b61190a565b60405161057591906139d2565b60405180910390f35b61059860048036038101906105939190613aa8565b611960565b6040516105a591906139d2565b60405180910390f35b6105b661197d565b6040516105c39190613b6e565b60405180910390f35b6105e660048036038101906105e19190613d66565b611a0b565b005b6105f0611c21565b6040516105fd91906139d2565b60405180910390f35b610620600480360381019061061b9190614394565b611c27565b005b61063c60048036038101906106379190613aa8565b611dc4565b005b610646611e4a565b6040516106539190613b6e565b60405180910390f35b610676600480360381019061067191906143fb565b611edc565b6040516106839190613a8d565b60405180910390f35b6106a660048036038101906106a1919061443b565b611f70565b005b6106c260048036038101906106bd9190614021565b612011565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610735576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072c90614544565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061085857507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610868575061086782612109565b5b9050919050565b6060600e61087c83612173565b60405160200161088d929190614695565b6040516020818303038152906040529050919050565b3373ffffffffffffffffffffffffffffffffffffffff166108c48383610f5c565b73ffffffffffffffffffffffffffffffffffffffff161461091a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091190614705565b60405180910390fd5b601060009054906101000a900460ff16610969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096090614771565b60405180910390fd5b60001515600960006003815260200190815260200160002060009054906101000a900460ff161515146109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c8906147dd565b60405180910390fd5b60016109dc3361190a565b1015610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1490614849565b60405180910390fd5b82600654610a2b9190614898565b60068190555082600460006003815260200190815260200160002054610a519190614898565b600460006003815260200190815260200160002081905550610aab336001856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b610aed336002856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b610b2f336003856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b610b3833612492565b505050565b610b456124ec565b73ffffffffffffffffffffffffffffffffffffffff16610b636114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb09061493a565b60405180910390fd5b806009600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610bf06124ec565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610c365750610c3585610c306124ec565b611edc565b5b610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c906149cc565b60405180910390fd5b610c8285858585856124f4565b5050505050565b610c916124ec565b73ffffffffffffffffffffffffffffffffffffffff16610caf6114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfc9061493a565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610d2a6124ec565b73ffffffffffffffffffffffffffffffffffffffff16610d486114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d959061493a565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b610dc36124ec565b73ffffffffffffffffffffffffffffffffffffffff16610de16114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610e37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2e9061493a565b60405180910390fd5b8060088190555050565b610e496124ec565b73ffffffffffffffffffffffffffffffffffffffff16610e676114a1565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb49061493a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610f03573d6000803e3d6000fd5b50565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600854610f5591906149ec565b9050919050565b6000610f688383612808565b905092915050565b60608151835114610fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fad90614a92565b60405180910390fd5b6000835167ffffffffffffffff811115610fd357610fd2613b9a565b5b6040519080825280602002602001820160405280156110015781602001602082028036833780820191505090505b50905060005b845181101561107e5761104e85828151811061102657611025614ab2565b5b602002602001015185838151811061104157611040614ab2565b5b60200260200101516106c4565b82828151811061106157611060614ab2565b5b6020026020010181815250508061107790614ae1565b9050611007565b508091505092915050565b60008061109583611960565b119050919050565b6110a56124ec565b73ffffffffffffffffffffffffffffffffffffffff166110c36114a1565b73ffffffffffffffffffffffffffffffffffffffff1614611119576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111109061493a565b60405180910390fd5b80600e908051906020019061112f929190613838565b5050565b61113b6124ec565b73ffffffffffffffffffffffffffffffffffffffff166111596114a1565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a69061493a565b60405180910390fd5b6111b96000612829565b565b600e80546111c890614593565b80601f01602080910402602001604051908101604052809291908181526020018280546111f490614593565b80156112415780601f1061121657610100808354040283529160200191611241565b820191906000526020600020905b81548152906001019060200180831161122457829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff1661126a8383610f5c565b73ffffffffffffffffffffffffffffffffffffffff16146112c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b790614705565b60405180910390fd5b601060009054906101000a900460ff1661130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690614771565b60405180910390fd5b60001515600960006002815260200190815260200160002060009054906101000a900460ff16151514611377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136e906147dd565b60405180910390fd5b60016113823361190a565b10156113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90614b76565b60405180910390fd5b826006546113d19190614898565b600681905550826004600060028152602001908152602001600020546113f79190614898565b600460006002815260200190815260200160002081905550611451336001856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b611493336002856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b61149c33612492565b505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d36124ec565b73ffffffffffffffffffffffffffffffffffffffff166114f16114a1565b73ffffffffffffffffffffffffffffffffffffffff1614611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e9061493a565b60405180910390fd5b80600f908051906020019061155d929190613838565b5050565b8173ffffffffffffffffffffffffffffffffffffffff166115806124ec565b73ffffffffffffffffffffffffffffffffffffffff1614156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90614c08565b60405180910390fd5b80600160006115e46124ec565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116916124ec565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116d69190613a8d565b60405180910390a35050565b60065481565b60085481565b60075481565b3373ffffffffffffffffffffffffffffffffffffffff166117158383610f5c565b73ffffffffffffffffffffffffffffffffffffffff161461176b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176290614705565b60405180910390fd5b601060009054906101000a900460ff166117ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b190614771565b60405180910390fd5b60001515600960006004815260200190815260200160002060009054906101000a900460ff16151514611822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611819906147dd565b60405180910390fd5b600161182d33610f06565b101561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590614849565b60405180910390fd5b8260065461187c9190614898565b600681905550826004600060048152602001908152602001600020546118a29190614898565b6004600060048152602001908152602001600020819055506118fc336004856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b611905336128ef565b505050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205460075461195991906149ec565b9050919050565b600060046000838152602001908152602001600020549050919050565b600f805461198a90614593565b80601f01602080910402602001604051908101604052809291908181526020018280546119b690614593565b8015611a035780601f106119d857610100808354040283529160200191611a03565b820191906000526020600020905b8154815290600101906020018083116119e657829003601f168201915b505050505081565b3373ffffffffffffffffffffffffffffffffffffffff16611a2c8383610f5c565b73ffffffffffffffffffffffffffffffffffffffff1614611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990614705565b60405180910390fd5b601060009054906101000a900460ff16611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614771565b60405180910390fd5b60001515600960006001815260200190815260200160002060009054906101000a900460ff16151514611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b30906147dd565b60405180910390fd5b6001611b443361190a565b1015611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90614b76565b60405180910390fd5b82600654611b939190614898565b60068190555082600460006001815260200190815260200160002054611bb99190614898565b600460006001815260200190815260200160002081905550611c13336001856040518060400160405280600681526020017f30783030303000000000000000000000000000000000000000000000000000008152506122fc565b611c1c33612492565b505050565b60055481565b601060019054906101000a900460ff16611c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6d90614c74565b60405180910390fd5b611c7e6124ec565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cc45750611cc384611cbe6124ec565b611edc565b5b611d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfa90614d06565b60405180910390fd5b81611d0e85856106c4565b1015611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690614d72565b60405180910390fd5b81600554611d5d9190614898565b600581905550611d6e848484612949565b8373ffffffffffffffffffffffffffffffffffffffff167ff3a670cd3af7d64b488926880889d08a8585a138ff455227af6737339a1ec2628483604051611db6929190614d92565b60405180910390a250505050565b611dcc6124ec565b73ffffffffffffffffffffffffffffffffffffffff16611dea6114a1565b73ffffffffffffffffffffffffffffffffffffffff1614611e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e379061493a565b60405180910390fd5b8060078190555050565b6060600f8054611e5990614593565b80601f0160208091040260200160405190810160405280929190818152602001828054611e8590614593565b8015611ed25780601f10611ea757610100808354040283529160200191611ed2565b820191906000526020600020905b815481529060010190602001808311611eb557829003601f168201915b5050505050905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f786124ec565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611fbe5750611fbd85611fb86124ec565b611edc565b5b611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff490614d06565b60405180910390fd5b61200a8585858585612b66565b5050505050565b6120196124ec565b73ffffffffffffffffffffffffffffffffffffffff166120376114a1565b73ffffffffffffffffffffffffffffffffffffffff161461208d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120849061493a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f490614e2d565b60405180910390fd5b61210681612829565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156121bb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122f7565b600082905060005b600082146121ed5780806121d690614ae1565b915050600a826121e69190614e7c565b91506121c3565b60008167ffffffffffffffff81111561220957612208613b9a565b5b6040519080825280601f01601f19166020018201604052801561223b5781602001600182028036833780820191505090505b50905060008290505b600086146122ef5760018161225991906149ec565b90506000600a808861226b9190614e7c565b6122759190614ead565b8761228091906149ec565b603061228c9190614f14565b905060008160f81b9050808484815181106122aa576122a9614ab2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a886122e69190614e7c565b97505050612244565b819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561236c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236390614fbd565b60405180910390fd5b60006123766124ec565b90506123978160008761238888612de8565b61239188612de8565b87612e62565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190614898565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612474929190614d92565b60405180910390a461248b81600087878787612e6a565b5050505050565b6001600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124e29190614898565b9250508190555050565b600033905090565b8151835114612538576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252f9061504f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259f906150e1565b60405180910390fd5b60006125b26124ec565b90506125c2818787878787612e62565b60005b84518110156127735760008582815181106125e3576125e2614ab2565b5b60200260200101519050600085838151811061260257612601614ab2565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90615173565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127589190614898565b925050819055505050508061276c90614ae1565b90506125c5565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516127ea929190615193565b60405180910390a4612800818787878787613051565b505050505050565b60008061281484613238565b90506128208184613299565b91505092915050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461293f9190614898565b9250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b09061523c565b60405180910390fd5b60006129c36124ec565b90506129f3818560006129d587612de8565b6129de87612de8565b60405180602001604052806000815250612e62565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612a8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a81906152ce565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612b57929190614d92565b60405180910390a45050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bcd906150e1565b60405180910390fd5b6000612be06124ec565b9050612c00818787612bf188612de8565b612bfa88612de8565b87612e62565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8e90615173565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d4c9190614898565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612dc9929190614d92565b60405180910390a4612ddf828888888888612e6a565b50505050505050565b60606000600167ffffffffffffffff811115612e0757612e06613b9a565b5b604051908082528060200260200182016040528015612e355781602001602082028036833780820191505090505b5090508281600081518110612e4d57612e4c614ab2565b5b60200260200101818152505080915050919050565b505050505050565b612e898473ffffffffffffffffffffffffffffffffffffffff166132c0565b15613049578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612ecf959493929190615343565b602060405180830381600087803b158015612ee957600080fd5b505af1925050508015612f1a57506040513d601f19601f82011682018060405250810190612f1791906153b2565b60015b612fc057612f266153ec565b806308c379a01415612f835750612f3b61540e565b80612f465750612f85565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7a9190613b6e565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb790615516565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e906155a8565b60405180910390fd5b505b505050505050565b6130708473ffffffffffffffffffffffffffffffffffffffff166132c0565b15613230578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016130b69594939291906155c8565b602060405180830381600087803b1580156130d057600080fd5b505af192505050801561310157506040513d601f19601f820116820180604052508101906130fe91906153b2565b60015b6131a75761310d6153ec565b806308c379a0141561316a575061312261540e565b8061312d575061316c565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131619190613b6e565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319e90615516565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461322e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613225906155a8565b60405180910390fd5b505b505050505050565b60006132927f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001613277929190615649565b604051602081830303815290604052805190602001206132d3565b9050919050565b60008060006132a885856132ed565b915091506132b581613370565b819250505092915050565b600080823b905060008111915050919050565b60006132e66132e0613545565b8361365f565b9050919050565b60008060418351141561332f5760008060006020860151925060408601519150606086015160001a905061332387828585613692565b94509450505050613369565b60408351141561336057600080602085015191506040850151905061335586838361379f565b935093505050613369565b60006002915091505b9250929050565b6000600481111561338457613383615672565b5b81600481111561339757613396615672565b5b14156133a257613542565b600160048111156133b6576133b5615672565b5b8160048111156133c9576133c8615672565b5b141561340a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613401906156ed565b60405180910390fd5b6002600481111561341e5761341d615672565b5b81600481111561343157613430615672565b5b1415613472576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346990615759565b60405180910390fd5b6003600481111561348657613485615672565b5b81600481111561349957613498615672565b5b14156134da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d1906157eb565b60405180910390fd5b6004808111156134ed576134ec615672565b5b816004811115613500576134ff615672565b5b1415613541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135389061587d565b60405180910390fd5b5b50565b60007f000000000000000000000000207ce3186b13a2855d9ce8fdb56eacc53e84fb4b73ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156135c157507f000000000000000000000000000000000000000000000000000000000000000146145b156135ee577f80578e9ca4e3e30c3efeef45e37a281ff54dae0763f7257d3ed95b8e0a560722905061365c565b6136597f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fed58bab033649280df90fa5394a50537ea9029571799ef113bec049d85a68a867fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc66137fe565b90505b90565b6000828260405160200161367492919061590a565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156136cd576000600391509150613796565b601b8560ff16141580156136e55750601c8560ff1614155b156136f7576000600491509150613796565b60006001878787876040516000815260200160405260405161371c9493929190615950565b6020604051602081039080840390855afa15801561373e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561378d57600060019250925050613796565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c6137e29190614898565b90506137f087828885613692565b935093505050935093915050565b60008383834630604051602001613819959493929190615995565b6040516020818303038152906040528051906020012090509392505050565b82805461384490614593565b90600052602060002090601f01602090048101928261386657600085556138ad565b82601f1061387f57805160ff19168380011785556138ad565b828001600101855582156138ad579182015b828111156138ac578251825591602001919060010190613891565b5b5090506138ba91906138be565b5090565b5b808211156138d75760008160009055506001016138bf565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061391a826138ef565b9050919050565b61392a8161390f565b811461393557600080fd5b50565b60008135905061394781613921565b92915050565b6000819050919050565b6139608161394d565b811461396b57600080fd5b50565b60008135905061397d81613957565b92915050565b6000806040838503121561399a576139996138e5565b5b60006139a885828601613938565b92505060206139b98582860161396e565b9150509250929050565b6139cc8161394d565b82525050565b60006020820190506139e760008301846139c3565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a22816139ed565b8114613a2d57600080fd5b50565b600081359050613a3f81613a19565b92915050565b600060208284031215613a5b57613a5a6138e5565b5b6000613a6984828501613a30565b91505092915050565b60008115159050919050565b613a8781613a72565b82525050565b6000602082019050613aa26000830184613a7e565b92915050565b600060208284031215613abe57613abd6138e5565b5b6000613acc8482850161396e565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b0f578082015181840152602081019050613af4565b83811115613b1e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613b4082613ad5565b613b4a8185613ae0565b9350613b5a818560208601613af1565b613b6381613b24565b840191505092915050565b60006020820190508181036000830152613b888184613b35565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613bd282613b24565b810181811067ffffffffffffffff82111715613bf157613bf0613b9a565b5b80604052505050565b6000613c046138db565b9050613c108282613bc9565b919050565b600067ffffffffffffffff821115613c3057613c2f613b9a565b5b613c3982613b24565b9050602081019050919050565b82818337600083830152505050565b6000613c68613c6384613c15565b613bfa565b905082815260208101848484011115613c8457613c83613b95565b5b613c8f848285613c46565b509392505050565b600082601f830112613cac57613cab613b90565b5b8135613cbc848260208601613c55565b91505092915050565b600067ffffffffffffffff821115613ce057613cdf613b9a565b5b613ce982613b24565b9050602081019050919050565b6000613d09613d0484613cc5565b613bfa565b905082815260208101848484011115613d2557613d24613b95565b5b613d30848285613c46565b509392505050565b600082601f830112613d4d57613d4c613b90565b5b8135613d5d848260208601613cf6565b91505092915050565b600080600060608486031215613d7f57613d7e6138e5565b5b6000613d8d8682870161396e565b935050602084013567ffffffffffffffff811115613dae57613dad6138ea565b5b613dba86828701613c97565b925050604084013567ffffffffffffffff811115613ddb57613dda6138ea565b5b613de786828701613d38565b9150509250925092565b613dfa81613a72565b8114613e0557600080fd5b50565b600081359050613e1781613df1565b92915050565b60008060408385031215613e3457613e336138e5565b5b6000613e428582860161396e565b9250506020613e5385828601613e08565b9150509250929050565b600067ffffffffffffffff821115613e7857613e77613b9a565b5b602082029050602081019050919050565b600080fd5b6000613ea1613e9c84613e5d565b613bfa565b90508083825260208201905060208402830185811115613ec457613ec3613e89565b5b835b81811015613eed5780613ed9888261396e565b845260208401935050602081019050613ec6565b5050509392505050565b600082601f830112613f0c57613f0b613b90565b5b8135613f1c848260208601613e8e565b91505092915050565b600080600080600060a08688031215613f4157613f406138e5565b5b6000613f4f88828901613938565b9550506020613f6088828901613938565b945050604086013567ffffffffffffffff811115613f8157613f806138ea565b5b613f8d88828901613ef7565b935050606086013567ffffffffffffffff811115613fae57613fad6138ea565b5b613fba88828901613ef7565b925050608086013567ffffffffffffffff811115613fdb57613fda6138ea565b5b613fe788828901613d38565b9150509295509295909350565b60006020828403121561400a576140096138e5565b5b600061401884828501613e08565b91505092915050565b600060208284031215614037576140366138e5565b5b600061404584828501613938565b91505092915050565b60008060408385031215614065576140646138e5565b5b600083013567ffffffffffffffff811115614083576140826138ea565b5b61408f85828601613c97565b925050602083013567ffffffffffffffff8111156140b0576140af6138ea565b5b6140bc85828601613d38565b9150509250929050565b6140cf8161390f565b82525050565b60006020820190506140ea60008301846140c6565b92915050565b600067ffffffffffffffff82111561410b5761410a613b9a565b5b602082029050602081019050919050565b600061412f61412a846140f0565b613bfa565b9050808382526020820190506020840283018581111561415257614151613e89565b5b835b8181101561417b57806141678882613938565b845260208401935050602081019050614154565b5050509392505050565b600082601f83011261419a57614199613b90565b5b81356141aa84826020860161411c565b91505092915050565b600080604083850312156141ca576141c96138e5565b5b600083013567ffffffffffffffff8111156141e8576141e76138ea565b5b6141f485828601614185565b925050602083013567ffffffffffffffff811115614215576142146138ea565b5b61422185828601613ef7565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6142608161394d565b82525050565b60006142728383614257565b60208301905092915050565b6000602082019050919050565b60006142968261422b565b6142a08185614236565b93506142ab83614247565b8060005b838110156142dc5781516142c38882614266565b97506142ce8361427e565b9250506001810190506142af565b5085935050505092915050565b60006020820190508181036000830152614303818461428b565b905092915050565b600060208284031215614321576143206138e5565b5b600082013567ffffffffffffffff81111561433f5761433e6138ea565b5b61434b84828501613c97565b91505092915050565b6000806040838503121561436b5761436a6138e5565b5b600061437985828601613938565b925050602061438a85828601613e08565b9150509250929050565b600080600080608085870312156143ae576143ad6138e5565b5b60006143bc87828801613938565b94505060206143cd8782880161396e565b93505060406143de8782880161396e565b92505060606143ef8782880161396e565b91505092959194509250565b60008060408385031215614412576144116138e5565b5b600061442085828601613938565b925050602061443185828601613938565b9150509250929050565b600080600080600060a08688031215614457576144566138e5565b5b600061446588828901613938565b955050602061447688828901613938565b94505060406144878882890161396e565b93505060606144988882890161396e565b925050608086013567ffffffffffffffff8111156144b9576144b86138ea565b5b6144c588828901613d38565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061452e602b83613ae0565b9150614539826144d2565b604082019050919050565b6000602082019050818103600083015261455d81614521565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145ab57607f821691505b602082108114156145bf576145be614564565b5b50919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546145f281614593565b6145fc81866145c5565b9450600182166000811461461757600181146146285761465b565b60ff1983168652818601935061465b565b614631856145d0565b60005b8381101561465357815481890152600182019150602081019050614634565b838801955050505b50505092915050565b600061466f82613ad5565b61467981856145c5565b9350614689818560208601613af1565b80840191505092915050565b60006146a182856145e5565b91506146ad8284614664565b91508190509392505050565b7f5369676e617475726520496e76616c6964000000000000000000000000000000600082015250565b60006146ef601183613ae0565b91506146fa826146b9565b602082019050919050565b6000602082019050818103600083015261471e816146e2565b9050919050565b7f73616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b600061475b601083613ae0565b915061476682614725565b602082019050919050565b6000602082019050818103600083015261478a8161474e565b9050919050565b7f6974656d206f7574206f662073746f636b000000000000000000000000000000600082015250565b60006147c7601183613ae0565b91506147d282614791565b602082019050919050565b600060208201905081810360008301526147f6816147ba565b9050919050565b7f596f7520616c7265616479206d696e7465640000000000000000000000000000600082015250565b6000614833601283613ae0565b915061483e826147fd565b602082019050919050565b6000602082019050818103600083015261486281614826565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148a38261394d565b91506148ae8361394d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148e3576148e2614869565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614924602083613ae0565b915061492f826148ee565b602082019050919050565b6000602082019050818103600083015261495381614917565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006149b6603283613ae0565b91506149c18261495a565b604082019050919050565b600060208201905081810360008301526149e5816149a9565b9050919050565b60006149f78261394d565b9150614a028361394d565b925082821015614a1557614a14614869565b5b828203905092915050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614a7c602983613ae0565b9150614a8782614a20565b604082019050919050565b60006020820190508181036000830152614aab81614a6f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614aec8261394d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b1f57614b1e614869565b5b600182019050919050565b7f596f75206d696e74656420746f6f206d616e7900000000000000000000000000600082015250565b6000614b60601383613ae0565b9150614b6b82614b2a565b602082019050919050565b60006020820190508181036000830152614b8f81614b53565b9050919050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614bf2602983613ae0565b9150614bfd82614b96565b604082019050919050565b60006020820190508181036000830152614c2181614be5565b9050919050565b7f6275726e206973206e6f7420656e61626c656400000000000000000000000000600082015250565b6000614c5e601383613ae0565b9150614c6982614c28565b602082019050919050565b60006020820190508181036000830152614c8d81614c51565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614cf0602983613ae0565b9150614cfb82614c94565b604082019050919050565b60006020820190508181036000830152614d1f81614ce3565b9050919050565b7f62616c616e636520746f6f206c6f770000000000000000000000000000000000600082015250565b6000614d5c600f83613ae0565b9150614d6782614d26565b602082019050919050565b60006020820190508181036000830152614d8b81614d4f565b9050919050565b6000604082019050614da760008301856139c3565b614db460208301846139c3565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614e17602683613ae0565b9150614e2282614dbb565b604082019050919050565b60006020820190508181036000830152614e4681614e0a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614e878261394d565b9150614e928361394d565b925082614ea257614ea1614e4d565b5b828204905092915050565b6000614eb88261394d565b9150614ec38361394d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614efc57614efb614869565b5b828202905092915050565b600060ff82169050919050565b6000614f1f82614f07565b9150614f2a83614f07565b92508260ff03821115614f4057614f3f614869565b5b828201905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fa7602183613ae0565b9150614fb282614f4b565b604082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000615039602883613ae0565b915061504482614fdd565b604082019050919050565b600060208201905081810360008301526150688161502c565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006150cb602583613ae0565b91506150d68261506f565b604082019050919050565b600060208201905081810360008301526150fa816150be565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b600061515d602a83613ae0565b915061516882615101565b604082019050919050565b6000602082019050818103600083015261518c81615150565b9050919050565b600060408201905081810360008301526151ad818561428b565b905081810360208301526151c1818461428b565b90509392505050565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000615226602383613ae0565b9150615231826151ca565b604082019050919050565b6000602082019050818103600083015261525581615219565b9050919050565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b60006152b8602483613ae0565b91506152c38261525c565b604082019050919050565b600060208201905081810360008301526152e7816152ab565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000615315826152ee565b61531f81856152f9565b935061532f818560208601613af1565b61533881613b24565b840191505092915050565b600060a08201905061535860008301886140c6565b61536560208301876140c6565b61537260408301866139c3565b61537f60608301856139c3565b8181036080830152615391818461530a565b90509695505050505050565b6000815190506153ac81613a19565b92915050565b6000602082840312156153c8576153c76138e5565b5b60006153d68482850161539d565b91505092915050565b60008160e01c9050919050565b600060033d111561540b5760046000803e6154086000516153df565b90505b90565b600060443d101561541e576154a1565b6154266138db565b60043d036004823e80513d602482011167ffffffffffffffff8211171561544e5750506154a1565b808201805167ffffffffffffffff81111561546c57505050506154a1565b80602083010160043d0385018111156154895750505050506154a1565b61549882602001850186613bc9565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000615500603483613ae0565b915061550b826154a4565b604082019050919050565b6000602082019050818103600083015261552f816154f3565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000615592602883613ae0565b915061559d82615536565b604082019050919050565b600060208201905081810360008301526155c181615585565b9050919050565b600060a0820190506155dd60008301886140c6565b6155ea60208301876140c6565b81810360408301526155fc818661428b565b90508181036060830152615610818561428b565b90508181036080830152615624818461530a565b90509695505050505050565b6000819050919050565b61564381615630565b82525050565b600060408201905061565e600083018561563a565b61566b602083018461563a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006156d7601883613ae0565b91506156e2826156a1565b602082019050919050565b60006020820190508181036000830152615706816156ca565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615743601f83613ae0565b915061574e8261570d565b602082019050919050565b6000602082019050818103600083015261577281615736565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006157d5602283613ae0565b91506157e082615779565b604082019050919050565b60006020820190508181036000830152615804816157c8565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615867602283613ae0565b91506158728261580b565b604082019050919050565b600060208201905081810360008301526158968161585a565b9050919050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006158d36002836145c5565b91506158de8261589d565b600282019050919050565b6000819050919050565b6159046158ff82615630565b6158e9565b82525050565b6000615915826158c6565b915061592182856158f3565b60208201915061593182846158f3565b6020820191508190509392505050565b61594a81614f07565b82525050565b6000608082019050615965600083018761563a565b6159726020830186615941565b61597f604083018561563a565b61598c606083018461563a565b95945050505050565b600060a0820190506159aa600083018861563a565b6159b7602083018761563a565b6159c4604083018661563a565b6159d160608301856139c3565b6159de60808301846140c6565b969550505050505056fea26469706673582212206eec7f07e7beaa98735f7761c43bee87bc718fdfb34d3bde7b6e9e3923d389ad64736f6c63430008090033

Deployed Bytecode Sourcemap

209:6805:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122:231:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1145:310;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4905:145:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2472:620;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6312:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4217:442:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6813:86:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6661:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6904:107;;;:::i;:::-;;5813:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4138:140;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2519:524:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6190:99:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4717:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1650:94:11;;;:::i;:::-;;1144:22:10;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1885:579;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;999:87:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4806:94:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3116:311:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;525:26:10;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;600:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;558:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3097:549;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5579:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6081:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1170:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1347:533;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;493:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3671:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6544:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5053:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3499:168:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3739:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1899:192:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2122:231:4;2208:7;2255:1;2236:21;;:7;:21;;;;2228:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;2323:9;:13;2333:2;2323:13;;;;;;;;;;;:22;2337:7;2323:22;;;;;;;;;;;;;;;;2316:29;;2122:231;;;;:::o;1145:310::-;1247:4;1299:26;1284:41;;;:11;:41;;;;:110;;;;1357:37;1342:52;;;:11;:52;;;;1284:110;:163;;;;1411:36;1435:11;1411:23;:36::i;:::-;1284:163;1264:183;;1145:310;;;:::o;4905:145:10:-;4965:13;5016:8;5026:17;5035:7;5026:8;:17::i;:::-;4999:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4985:60;;4905:145;;;:::o;2472:620::-;2598:10;2572:36;;:22;2578:4;2584:9;2572:5;:22::i;:::-;:36;;;2564:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2667:8;;;;;;;;;;;2659:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;2728:5;2709:24;;:7;:15;1037:1;2709:15;;;;;;;;;;;;;;;;;;;;;:24;;;2701:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;2803:1;2771:28;2788:10;2771:16;:28::i;:::-;:33;;2763:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2863:3;2849:11;;:17;;;;:::i;:::-;2835:11;:31;;;;2917:3;2894:12;:20;1037:1;2894:20;;;;;;;;;;;;:26;;;;:::i;:::-;2871:12;:20;1037:1;2871:20;;;;;;;;;;;:49;;;;2925:40;2931:10;975:1;2951:3;2925:40;;;;;;;;;;;;;;;;;:5;:40::i;:::-;2970;2976:10;1006:1;2996:3;2970:40;;;;;;;;;;;;;;;;;:5;:40::i;:::-;3015;3021:10;1037:1;3041:3;3015:40;;;;;;;;;;;;;;;;;:5;:40::i;:::-;3060:27;3076:10;3060:15;:27::i;:::-;2472:620;;;:::o;6312:102::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6400:9:10::1;6385:7;:12;6393:3;6385:12;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;6312:102:::0;;:::o;4217:442:4:-;4458:12;:10;:12::i;:::-;4450:20;;:4;:20;;;:60;;;;4474:36;4491:4;4497:12;:10;:12::i;:::-;4474:16;:36::i;:::-;4450:60;4428:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;4599:52;4622:4;4628:2;4632:3;4637:7;4646:4;4599:22;:52::i;:::-;4217:442;;;;;:::o;6813:86:10:-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6885:9:10::1;6874:8;;:20;;;;;;;;;;;;;;;;;;6813:86:::0;:::o;6438:::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6510:9:10::1;6499:8;;:20;;;;;;;;;;;;;;;;;;6438:86:::0;:::o;6661:129::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6768:17:10::1;6742:23;:43;;;;6661:129:::0;:::o;6904:107::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6963:10:10::1;6955:28;;:51;6984:21;6955:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6904:107::o:0;5813:154::-;5883:7;5932:19;:27;5952:6;5932:27;;;;;;;;;;;;;;;;5906:23;;:53;;;;:::i;:::-;5899:60;;5813:154;;;:::o;4138:140::-;4218:7;4245:25;4254:4;4260:9;4245:7;:25::i;:::-;4238:32;;4138:140;;;;:::o;2519:524:4:-;2675:16;2736:3;:10;2717:8;:15;:29;2709:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;2805:30;2852:8;:15;2838:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2805:63;;2886:9;2881:122;2905:8;:15;2901:1;:19;2881:122;;;2961:30;2971:8;2980:1;2971:11;;;;;;;;:::i;:::-;;;;;;;;2984:3;2988:1;2984:6;;;;;;;;:::i;:::-;;;;;;;;2961:9;:30::i;:::-;2942:13;2956:1;2942:16;;;;;;;;:::i;:::-;;;;;;;:49;;;;;2922:3;;;;:::i;:::-;;;2881:122;;;;3022:13;3015:20;;;2519:524;;;;:::o;6190:99:10:-;6247:4;6283:1;6265:15;6277:2;6265:11;:15::i;:::-;:19;6258:26;;6190:99;;;:::o;4717:86::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4792:6:10::1;4781:8;:17;;;;;;;;;;;;:::i;:::-;;4717:86:::0;:::o;1650:94:11:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1144:22:10:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1885:579::-;2011:10;1985:36;;:22;1991:4;1997:9;1985:5;:22::i;:::-;:36;;;1977:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2080:8;;;;;;;;;;;2072:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;2141:5;2122:24;;:7;:15;1006:1;2122:15;;;;;;;;;;;;;;;;;;;;;:24;;;2114:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;2219:1;2187:28;2204:10;2187:16;:28::i;:::-;:33;;2179:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2280:3;2266:11;;:17;;;;:::i;:::-;2252:11;:31;;;;2334:3;2311:12;:20;1006:1;2311:20;;;;;;;;;;;;:26;;;;:::i;:::-;2288:12;:20;1006:1;2288:20;;;;;;;;;;;:49;;;;2342:40;2348:10;975:1;2368:3;2342:40;;;;;;;;;;;;;;;;;:5;:40::i;:::-;2387;2393:10;1006:1;2413:3;2387:40;;;;;;;;;;;;;;;;;:5;:40::i;:::-;2432:27;2448:10;2432:15;:27::i;:::-;1885:579;;;:::o;999:87:11:-;1045:7;1072:6;;;;;;;;;;;1065:13;;999:87;:::o;4806:94:10:-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4889:6:10::1;4874:12;:21;;;;;;;;;;;;:::i;:::-;;4806:94:::0;:::o;3116:311:4:-;3235:8;3219:24;;:12;:10;:12::i;:::-;:24;;;;3211:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3347:8;3302:18;:32;3321:12;:10;:12::i;:::-;3302:32;;;;;;;;;;;;;;;:42;3335:8;3302:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;3400:8;3371:48;;3386:12;:10;:12::i;:::-;3371:48;;;3410:8;3371:48;;;;;;:::i;:::-;;;;;;;;3116:311;;:::o;525:26:10:-;;;;:::o;600:42::-;;;;:::o;558:35::-;;;;:::o;3097:549::-;3224:10;3198:36;;:22;3204:4;3210:9;3198:5;:22::i;:::-;:36;;;3190:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;3293:8;;;;;;;;;;;3285:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;3355:5;3335:25;;:7;:16;1069:1;3335:16;;;;;;;;;;;;;;;;;;;;;:25;;;3327:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3437:1;3398:35;3422:10;3398:23;:35::i;:::-;:40;;3390:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3497:3;3483:11;;:17;;;;:::i;:::-;3469:11;:31;;;;3553:3;3529:12;:21;1069:1;3529:21;;;;;;;;;;;;:27;;;;:::i;:::-;3505:12;:21;1069:1;3505:21;;;;;;;;;;;:51;;;;3561:41;3567:10;1069:1;3588:3;3561:41;;;;;;;;;;;;;;;;;:5;:41::i;:::-;3607:34;3630:10;3607:22;:34::i;:::-;3097:549;;;:::o;5579:134::-;5642:7;5684:12;:20;5697:6;5684:20;;;;;;;;;;;;;;;;5665:16;;:39;;;;:::i;:::-;5658:46;;5579:134;;;:::o;6081:104::-;6143:7;6164:12;:16;6177:2;6164:16;;;;;;;;;;;;6157:23;;6081:104;;;:::o;1170:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1347:533::-;1473:10;1447:36;;:22;1453:4;1459:9;1447:5;:22::i;:::-;:36;;;1439:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1542:8;;;;;;;;;;;1534:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;1603:5;1584:24;;:7;:15;975:1;1584:15;;;;;;;;;;;;;;;;;;;;;:24;;;1576:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1681:1;1649:28;1666:10;1649:16;:28::i;:::-;:33;;1641:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1741:3;1727:11;;:17;;;;:::i;:::-;1713:11;:31;;;;1795:3;1772:12;:20;975:1;1772:20;;;;;;;;;;;;:26;;;;:::i;:::-;1749:12;:20;975:1;1749:20;;;;;;;;;;;:49;;;;1803:40;1809:10;975:1;1829:3;1803:40;;;;;;;;;;;;;;;;;:5;:40::i;:::-;1848:27;1864:10;1848:15;:27::i;:::-;1347:533;;;:::o;493:28::-;;;;:::o;3671:458::-;3785:8;;;;;;;;;;;3777:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;3846:12;:10;:12::i;:::-;3835:23;;:7;:23;;;:66;;;;3862:39;3879:7;3888:12;:10;:12::i;:::-;3862:16;:39::i;:::-;3835:66;3822:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;3994:3;3968:22;3978:7;3987:2;3968:9;:22::i;:::-;:29;;3960:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4056:3;4040:13;;:19;;;;:::i;:::-;4024:13;:35;;;;4064:23;4070:7;4079:2;4083:3;4064:5;:23::i;:::-;4106:7;4097:27;;;4115:2;4119:4;4097:27;;;;;;;:::i;:::-;;;;;;;;3671:458;;;;:::o;6544:114::-;1230:12:11;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6636:17:10::1;6617:16;:36;;;;6544:114:::0;:::o;5053:88::-;5097:13;5124:12;5117:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5053:88;:::o;3499:168:4:-;3598:4;3622:18;:27;3641:7;3622:27;;;;;;;;;;;;;;;:37;3650:8;3622:37;;;;;;;;;;;;;;;;;;;;;;;;;3615:44;;3499:168;;;;:::o;3739:401::-;3955:12;:10;:12::i;:::-;3947:20;;:4;:20;;;:60;;;;3971:36;3988:4;3994:12;:10;:12::i;:::-;3971:16;:36::i;:::-;3947:60;3925:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;4087:45;4105:4;4111:2;4115;4119:6;4127:4;4087:17;:45::i;:::-;3739:401;;;;;:::o;1899:192:11:-;1230:12;:10;:12::i;:::-;1219:23;;:7;:5;:7::i;:::-;:23;;;1211:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2008:1:::1;1988:22;;:8;:22;;;;1980:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;787:157:5:-;872:4;911:25;896:40;;;:11;:40;;;;889:47;;787:157;;;:::o;5144:430:10:-;5197:27;5241:1;5235:2;:7;5231:26;;;5245:10;;;;;;;;;;;;;;;;;;;;;5231:26;5262:9;5274:2;5262:14;;5282:11;5298:32;5310:1;5305;:6;5298:32;;5314:5;;;;;:::i;:::-;;;;5326:2;5321:7;;;;;:::i;:::-;;;5298:32;;;5335:17;5365:3;5355:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5335:34;;5375:9;5387:3;5375:15;;5395:151;5408:1;5402:2;:7;5395:151;;5425:1;5421;:5;;;;:::i;:::-;5417:9;;5432:10;5474:2;5468;5463;:7;;;;:::i;:::-;5462:14;;;;:::i;:::-;5457:2;:19;;;;:::i;:::-;5446:2;:31;;;;:::i;:::-;5432:46;;5484:9;5503:4;5496:12;;5484:24;;5524:2;5514:4;5519:1;5514:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;5538:2;5532:8;;;;;:::i;:::-;;;5411:135;;5395:151;;;5564:4;5550:19;;;;;;5144:430;;;;:::o;8708:599:4:-;8885:1;8866:21;;:7;:21;;;;8858:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8938:16;8957:12;:10;:12::i;:::-;8938:31;;8982:107;9003:8;9021:1;9025:7;9034:21;9052:2;9034:17;:21::i;:::-;9057:25;9075:6;9057:17;:25::i;:::-;9084:4;8982:20;:107::i;:::-;9128:6;9102:9;:13;9112:2;9102:13;;;;;;;;;;;:22;9116:7;9102:22;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;9187:7;9150:57;;9183:1;9150:57;;9165:8;9150:57;;;9196:2;9200:6;9150:57;;;;;;;:::i;:::-;;;;;;;;9220:79;9251:8;9269:1;9273:7;9282:2;9286:6;9294:4;9220:30;:79::i;:::-;8847:460;8708:599;;;;:::o;5719:89:10:-;5799:1;5775:12;:20;5788:6;5775:20;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;5719:89;:::o;601:98:1:-;654:7;681:10;674:17;;601:98;:::o;6301:1074:4:-;6528:7;:14;6514:3;:10;:28;6506:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;6620:1;6606:16;;:2;:16;;;;6598:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;6677:16;6696:12;:10;:12::i;:::-;6677:31;;6721:60;6742:8;6752:4;6758:2;6762:3;6767:7;6776:4;6721:20;:60::i;:::-;6799:9;6794:421;6818:3;:10;6814:1;:14;6794:421;;;6850:10;6863:3;6867:1;6863:6;;;;;;;;:::i;:::-;;;;;;;;6850:19;;6884:14;6901:7;6909:1;6901:10;;;;;;;;:::i;:::-;;;;;;;;6884:27;;6928:19;6950:9;:13;6960:2;6950:13;;;;;;;;;;;:19;6964:4;6950:19;;;;;;;;;;;;;;;;6928:41;;7007:6;6992:11;:21;;6984:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;7140:6;7126:11;:20;7104:9;:13;7114:2;7104:13;;;;;;;;;;;:19;7118:4;7104:19;;;;;;;;;;;;;;;:42;;;;7197:6;7176:9;:13;7186:2;7176:13;;;;;;;;;;;:17;7190:2;7176:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;6835:380;;;6830:3;;;;:::i;:::-;;;6794:421;;;;7262:2;7232:47;;7256:4;7232:47;;7246:8;7232:47;;;7266:3;7271:7;7232:47;;;;;;;:::i;:::-;;;;;;;;7292:75;7328:8;7338:4;7344:2;7348:3;7353:7;7362:4;7292:35;:75::i;:::-;6495:880;6301:1074;;;;;:::o;4286:190:10:-;4370:7;4390:14;4407:11;4413:4;4407:5;:11::i;:::-;4390:28;;4436:32;4450:6;4458:9;4436:13;:32::i;:::-;4429:39;;;4286:190;;;;:::o;2099:173:11:-;2155:16;2174:6;;;;;;;;;;;2155:25;;2200:8;2191:6;;:17;;;;;;;;;;;;;;;;;;2255:8;2224:40;;2245:8;2224:40;;;;;;;;;;;;2144:128;2099:173;:::o;5973:103:10:-;6067:1;6036:19;:27;6056:6;6036:27;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;5973:103;:::o;10657:675:4:-;10806:1;10787:21;;:7;:21;;;;10779:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;10861:16;10880:12;:10;:12::i;:::-;10861:31;;10905:105;10926:8;10936:7;10953:1;10957:21;10975:2;10957:17;:21::i;:::-;10980:25;10998:6;10980:17;:25::i;:::-;10905:105;;;;;;;;;;;;:20;:105::i;:::-;11023:22;11048:9;:13;11058:2;11048:13;;;;;;;;;;;:22;11062:7;11048:22;;;;;;;;;;;;;;;;11023:47;;11107:6;11089:14;:24;;11081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11232:6;11215:14;:23;11190:9;:13;11200:2;11190:13;;;;;;;;;;;:22;11204:7;11190:22;;;;;;;;;;;;;;;:48;;;;11309:1;11267:57;;11292:7;11267:57;;11282:8;11267:57;;;11313:2;11317:6;11267:57;;;;;;;:::i;:::-;;;;;;;;10768:564;;10657:675;;;:::o;5123:820::-;5325:1;5311:16;;:2;:16;;;;5303:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;5382:16;5401:12;:10;:12::i;:::-;5382:31;;5426:96;5447:8;5457:4;5463:2;5467:21;5485:2;5467:17;:21::i;:::-;5490:25;5508:6;5490:17;:25::i;:::-;5517:4;5426:20;:96::i;:::-;5535:19;5557:9;:13;5567:2;5557:13;;;;;;;;;;;:19;5571:4;5557:19;;;;;;;;;;;;;;;;5535:41;;5610:6;5595:11;:21;;5587:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5735:6;5721:11;:20;5699:9;:13;5709:2;5699:13;;;;;;;;;;;:19;5713:4;5699:19;;;;;;;;;;;;;;;:42;;;;5784:6;5763:9;:13;5773:2;5763:13;;;;;;;;;;;:17;5777:2;5763:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;5839:2;5808:46;;5833:4;5808:46;;5823:8;5808:46;;;5843:2;5847:6;5808:46;;;;;;;:::i;:::-;;;;;;;;5867:68;5898:8;5908:4;5914:2;5918;5922:6;5930:4;5867:30;:68::i;:::-;5292:651;;5123:820;;;;;:::o;15219:198::-;15285:16;15314:22;15353:1;15339:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15314:41;;15377:7;15366:5;15372:1;15366:8;;;;;;;;:::i;:::-;;;;;;;:18;;;;;15404:5;15397:12;;;15219:198;;;:::o;13409:221::-;;;;;;;:::o;13638:748::-;13853:15;:2;:13;;;:15::i;:::-;13849:530;;;13906:2;13889:38;;;13928:8;13938:4;13944:2;13948:6;13956:4;13889:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;13885:483;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;14241:6;14234:14;;;;;;;;;;;:::i;:::-;;;;;;;;13885:483;;;14290:62;;;;;;;;;;:::i;:::-;;;;;;;;13885:483;14023:47;;;14011:59;;;:8;:59;;;;14007:158;;14095:50;;;;;;;;;;:::i;:::-;;;;;;;;14007:158;13962:218;13849:530;13638:748;;;;;;:::o;14394:817::-;14634:15;:2;:13;;;:15::i;:::-;14630:574;;;14687:2;14670:43;;;14714:8;14724:4;14730:3;14735:7;14744:4;14670:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;14666:527;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;15066:6;15059:14;;;;;;;;;;;:::i;:::-;;;;;;;;14666:527;;;15115:62;;;;;;;;;;:::i;:::-;;;;;;;;14666:527;14843:52;;;14831:64;;;:8;:64;;;;14827:163;;14920:50;;;;;;;;;;:::i;:::-;;;;;;;;14827:163;14750:255;14630:574;14394:817;;;;;;:::o;4484:228:10:-;4542:7;4569:138;4621:36;4688:4;4672:22;;;;;;4596:109;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4586:120;;;;;;4569:16;:138::i;:::-;4562:145;;4484:228;;;:::o;4393:231:2:-;4471:7;4492:17;4511:18;4533:27;4544:4;4550:9;4533:10;:27::i;:::-;4491:69;;;;4571:18;4583:5;4571:11;:18::i;:::-;4607:9;4600:16;;;;4393:231;;;;:::o;743:387:0:-;803:4;1011:12;1078:7;1066:20;1058:28;;1121:1;1114:4;:8;1107:15;;;743:387;;;:::o;4439:167:3:-;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;4543:21;:55::i;:::-;4536:62;;4439:167;;;:::o;2283:1308:2:-;2364:7;2373:12;2618:2;2598:9;:16;:22;2594:990;;;2637:9;2661;2685:7;2894:4;2883:9;2879:20;2873:27;2868:32;;2944:4;2933:9;2929:20;2923:27;2918:32;;3002:4;2991:9;2987:20;2981:27;2978:1;2973:36;2968:41;;3045:25;3056:4;3062:1;3065;3068;3045:10;:25::i;:::-;3038:32;;;;;;;;;2594:990;3112:2;3092:9;:16;:22;3088:496;;;3131:9;3155:10;3367:4;3356:9;3352:20;3346:27;3341:32;;3418:4;3407:9;3403:20;3397:27;3391:33;;3460:23;3471:4;3477:1;3480:2;3460:10;:23::i;:::-;3453:30;;;;;;;;3088:496;3532:1;3536:35;3516:56;;;;2283:1308;;;;;;:::o;554:643::-;632:20;623:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;619:571;;;669:7;;619:571;730:29;721:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;717:473;;;776:34;;;;;;;;;;:::i;:::-;;;;;;;;717:473;841:35;832:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;828:362;;;893:41;;;;;;;;;;:::i;:::-;;;;;;;;828:362;965:30;956:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;952:238;;;1012:44;;;;;;;;;;:::i;:::-;;;;;;;;952:238;1087:30;1078:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;1074:116;;;1134:44;;;;;;;;;;:::i;:::-;;;;;;;;1074:116;554:643;;:::o;3212:314:3:-;3265:7;3306:12;3289:29;;3297:4;3289:29;;;:66;;;;;3339:16;3322:13;:33;3289:66;3285:234;;;3379:24;3372:31;;;;3285:234;3443:64;3465:10;3477:12;3491:15;3443:21;:64::i;:::-;3436:71;;3212:314;;:::o;9307:196:2:-;9400:7;9466:15;9483:10;9437:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9427:68;;;;;;9420:75;;9307:196;;;;:::o;5845:1632::-;5976:7;5985:12;6910:66;6905:1;6897:10;;:79;6893:163;;;7009:1;7013:30;6993:51;;;;;;6893:163;7075:2;7070:1;:7;;;;:18;;;;;7086:2;7081:1;:7;;;;7070:18;7066:102;;;7121:1;7125:30;7105:51;;;;;;7066:102;7265:14;7282:24;7292:4;7298:1;7301;7304;7282:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7265:41;;7339:1;7321:20;;:6;:20;;;7317:103;;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;7448:20;7432:37;;;;;5845:1632;;;;;;;;:::o;4887:344::-;5001:7;5010:12;5035:9;5060:66;5052:75;;5047:2;:80;5035:92;;5138:7;5177:2;5170:3;5163:2;5155:11;;:18;;5154:25;;;;:::i;:::-;5138:42;;5198:25;5209:4;5215:1;5218;5221;5198:10;:25::i;:::-;5191:32;;;;;;4887:344;;;;;;:::o;3534:263:3:-;3678:7;3726:8;3736;3746:11;3759:13;3782:4;3715:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3705:84;;;;;;3698:91;;3534:263;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:13:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:77::-;878:7;907:5;896:16;;841:77;;;:::o;924:122::-;997:24;1015:5;997:24;:::i;:::-;990:5;987:35;977:63;;1036:1;1033;1026:12;977:63;924:122;:::o;1052:139::-;1098:5;1136:6;1123:20;1114:29;;1152:33;1179:5;1152:33;:::i;:::-;1052:139;;;;:::o;1197:474::-;1265:6;1273;1322:2;1310:9;1301:7;1297:23;1293:32;1290:119;;;1328:79;;:::i;:::-;1290:119;1448:1;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1419:117;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1197:474;;;;;:::o;1677:118::-;1764:24;1782:5;1764:24;:::i;:::-;1759:3;1752:37;1677:118;;:::o;1801:222::-;1894:4;1932:2;1921:9;1917:18;1909:26;;1945:71;2013:1;2002:9;1998:17;1989:6;1945:71;:::i;:::-;1801:222;;;;:::o;2029:149::-;2065:7;2105:66;2098:5;2094:78;2083:89;;2029:149;;;:::o;2184:120::-;2256:23;2273:5;2256:23;:::i;:::-;2249:5;2246:34;2236:62;;2294:1;2291;2284:12;2236:62;2184:120;:::o;2310:137::-;2355:5;2393:6;2380:20;2371:29;;2409:32;2435:5;2409:32;:::i;:::-;2310:137;;;;:::o;2453:327::-;2511:6;2560:2;2548:9;2539:7;2535:23;2531:32;2528:119;;;2566:79;;:::i;:::-;2528:119;2686:1;2711:52;2755:7;2746:6;2735:9;2731:22;2711:52;:::i;:::-;2701:62;;2657:116;2453:327;;;;:::o;2786:90::-;2820:7;2863:5;2856:13;2849:21;2838:32;;2786:90;;;:::o;2882:109::-;2963:21;2978:5;2963:21;:::i;:::-;2958:3;2951:34;2882:109;;:::o;2997:210::-;3084:4;3122:2;3111:9;3107:18;3099:26;;3135:65;3197:1;3186:9;3182:17;3173:6;3135:65;:::i;:::-;2997:210;;;;:::o;3213:329::-;3272:6;3321:2;3309:9;3300:7;3296:23;3292:32;3289:119;;;3327:79;;:::i;:::-;3289:119;3447:1;3472:53;3517:7;3508:6;3497:9;3493:22;3472:53;:::i;:::-;3462:63;;3418:117;3213:329;;;;:::o;3548:99::-;3600:6;3634:5;3628:12;3618:22;;3548:99;;;:::o;3653:169::-;3737:11;3771:6;3766:3;3759:19;3811:4;3806:3;3802:14;3787:29;;3653:169;;;;:::o;3828:307::-;3896:1;3906:113;3920:6;3917:1;3914:13;3906:113;;;4005:1;4000:3;3996:11;3990:18;3986:1;3981:3;3977:11;3970:39;3942:2;3939:1;3935:10;3930:15;;3906:113;;;4037:6;4034:1;4031:13;4028:101;;;4117:1;4108:6;4103:3;4099:16;4092:27;4028:101;3877:258;3828:307;;;:::o;4141:102::-;4182:6;4233:2;4229:7;4224:2;4217:5;4213:14;4209:28;4199:38;;4141:102;;;:::o;4249:364::-;4337:3;4365:39;4398:5;4365:39;:::i;:::-;4420:71;4484:6;4479:3;4420:71;:::i;:::-;4413:78;;4500:52;4545:6;4540:3;4533:4;4526:5;4522:16;4500:52;:::i;:::-;4577:29;4599:6;4577:29;:::i;:::-;4572:3;4568:39;4561:46;;4341:272;4249:364;;;;:::o;4619:313::-;4732:4;4770:2;4759:9;4755:18;4747:26;;4819:9;4813:4;4809:20;4805:1;4794:9;4790:17;4783:47;4847:78;4920:4;4911:6;4847:78;:::i;:::-;4839:86;;4619:313;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:307::-;7105:4;7195:18;7187:6;7184:30;7181:56;;;7217:18;;:::i;:::-;7181:56;7255:29;7277:6;7255:29;:::i;:::-;7247:37;;7339:4;7333;7329:15;7321:23;;7044:307;;;:::o;7357:410::-;7434:5;7459:65;7475:48;7516:6;7475:48;:::i;:::-;7459:65;:::i;:::-;7450:74;;7547:6;7540:5;7533:21;7585:4;7578:5;7574:16;7623:3;7614:6;7609:3;7605:16;7602:25;7599:112;;;7630:79;;:::i;:::-;7599:112;7720:41;7754:6;7749:3;7744;7720:41;:::i;:::-;7440:327;7357:410;;;;;:::o;7786:338::-;7841:5;7890:3;7883:4;7875:6;7871:17;7867:27;7857:122;;7898:79;;:::i;:::-;7857:122;8015:6;8002:20;8040:78;8114:3;8106:6;8099:4;8091:6;8087:17;8040:78;:::i;:::-;8031:87;;7847:277;7786:338;;;;:::o;8130:977::-;8226:6;8234;8242;8291:2;8279:9;8270:7;8266:23;8262:32;8259:119;;;8297:79;;:::i;:::-;8259:119;8417:1;8442:53;8487:7;8478:6;8467:9;8463:22;8442:53;:::i;:::-;8432:63;;8388:117;8572:2;8561:9;8557:18;8544:32;8603:18;8595:6;8592:30;8589:117;;;8625:79;;:::i;:::-;8589:117;8730:63;8785:7;8776:6;8765:9;8761:22;8730:63;:::i;:::-;8720:73;;8515:288;8870:2;8859:9;8855:18;8842:32;8901:18;8893:6;8890:30;8887:117;;;8923:79;;:::i;:::-;8887:117;9028:62;9082:7;9073:6;9062:9;9058:22;9028:62;:::i;:::-;9018:72;;8813:287;8130:977;;;;;:::o;9113:116::-;9183:21;9198:5;9183:21;:::i;:::-;9176:5;9173:32;9163:60;;9219:1;9216;9209:12;9163:60;9113:116;:::o;9235:133::-;9278:5;9316:6;9303:20;9294:29;;9332:30;9356:5;9332:30;:::i;:::-;9235:133;;;;:::o;9374:468::-;9439:6;9447;9496:2;9484:9;9475:7;9471:23;9467:32;9464:119;;;9502:79;;:::i;:::-;9464:119;9622:1;9647:53;9692:7;9683:6;9672:9;9668:22;9647:53;:::i;:::-;9637:63;;9593:117;9749:2;9775:50;9817:7;9808:6;9797:9;9793:22;9775:50;:::i;:::-;9765:60;;9720:115;9374:468;;;;;:::o;9848:311::-;9925:4;10015:18;10007:6;10004:30;10001:56;;;10037:18;;:::i;:::-;10001:56;10087:4;10079:6;10075:17;10067:25;;10147:4;10141;10137:15;10129:23;;9848:311;;;:::o;10165:117::-;10274:1;10271;10264:12;10305:710;10401:5;10426:81;10442:64;10499:6;10442:64;:::i;:::-;10426:81;:::i;:::-;10417:90;;10527:5;10556:6;10549:5;10542:21;10590:4;10583:5;10579:16;10572:23;;10643:4;10635:6;10631:17;10623:6;10619:30;10672:3;10664:6;10661:15;10658:122;;;10691:79;;:::i;:::-;10658:122;10806:6;10789:220;10823:6;10818:3;10815:15;10789:220;;;10898:3;10927:37;10960:3;10948:10;10927:37;:::i;:::-;10922:3;10915:50;10994:4;10989:3;10985:14;10978:21;;10865:144;10849:4;10844:3;10840:14;10833:21;;10789:220;;;10793:21;10407:608;;10305:710;;;;;:::o;11038:370::-;11109:5;11158:3;11151:4;11143:6;11139:17;11135:27;11125:122;;11166:79;;:::i;:::-;11125:122;11283:6;11270:20;11308:94;11398:3;11390:6;11383:4;11375:6;11371:17;11308:94;:::i;:::-;11299:103;;11115:293;11038:370;;;;:::o;11414:1509::-;11568:6;11576;11584;11592;11600;11649:3;11637:9;11628:7;11624:23;11620:33;11617:120;;;11656:79;;:::i;:::-;11617:120;11776:1;11801:53;11846:7;11837:6;11826:9;11822:22;11801:53;:::i;:::-;11791:63;;11747:117;11903:2;11929:53;11974:7;11965:6;11954:9;11950:22;11929:53;:::i;:::-;11919:63;;11874:118;12059:2;12048:9;12044:18;12031:32;12090:18;12082:6;12079:30;12076:117;;;12112:79;;:::i;:::-;12076:117;12217:78;12287:7;12278:6;12267:9;12263:22;12217:78;:::i;:::-;12207:88;;12002:303;12372:2;12361:9;12357:18;12344:32;12403:18;12395:6;12392:30;12389:117;;;12425:79;;:::i;:::-;12389:117;12530:78;12600:7;12591:6;12580:9;12576:22;12530:78;:::i;:::-;12520:88;;12315:303;12685:3;12674:9;12670:19;12657:33;12717:18;12709:6;12706:30;12703:117;;;12739:79;;:::i;:::-;12703:117;12844:62;12898:7;12889:6;12878:9;12874:22;12844:62;:::i;:::-;12834:72;;12628:288;11414:1509;;;;;;;;:::o;12929:323::-;12985:6;13034:2;13022:9;13013:7;13009:23;13005:32;13002:119;;;13040:79;;:::i;:::-;13002:119;13160:1;13185:50;13227:7;13218:6;13207:9;13203:22;13185:50;:::i;:::-;13175:60;;13131:114;12929:323;;;;:::o;13258:329::-;13317:6;13366:2;13354:9;13345:7;13341:23;13337:32;13334:119;;;13372:79;;:::i;:::-;13334:119;13492:1;13517:53;13562:7;13553:6;13542:9;13538:22;13517:53;:::i;:::-;13507:63;;13463:117;13258:329;;;;:::o;13593:832::-;13680:6;13688;13737:2;13725:9;13716:7;13712:23;13708:32;13705:119;;;13743:79;;:::i;:::-;13705:119;13891:1;13880:9;13876:17;13863:31;13921:18;13913:6;13910:30;13907:117;;;13943:79;;:::i;:::-;13907:117;14048:63;14103:7;14094:6;14083:9;14079:22;14048:63;:::i;:::-;14038:73;;13834:287;14188:2;14177:9;14173:18;14160:32;14219:18;14211:6;14208:30;14205:117;;;14241:79;;:::i;:::-;14205:117;14346:62;14400:7;14391:6;14380:9;14376:22;14346:62;:::i;:::-;14336:72;;14131:287;13593:832;;;;;:::o;14431:118::-;14518:24;14536:5;14518:24;:::i;:::-;14513:3;14506:37;14431:118;;:::o;14555:222::-;14648:4;14686:2;14675:9;14671:18;14663:26;;14699:71;14767:1;14756:9;14752:17;14743:6;14699:71;:::i;:::-;14555:222;;;;:::o;14783:311::-;14860:4;14950:18;14942:6;14939:30;14936:56;;;14972:18;;:::i;:::-;14936:56;15022:4;15014:6;15010:17;15002:25;;15082:4;15076;15072:15;15064:23;;14783:311;;;:::o;15117:710::-;15213:5;15238:81;15254:64;15311:6;15254:64;:::i;:::-;15238:81;:::i;:::-;15229:90;;15339:5;15368:6;15361:5;15354:21;15402:4;15395:5;15391:16;15384:23;;15455:4;15447:6;15443:17;15435:6;15431:30;15484:3;15476:6;15473:15;15470:122;;;15503:79;;:::i;:::-;15470:122;15618:6;15601:220;15635:6;15630:3;15627:15;15601:220;;;15710:3;15739:37;15772:3;15760:10;15739:37;:::i;:::-;15734:3;15727:50;15806:4;15801:3;15797:14;15790:21;;15677:144;15661:4;15656:3;15652:14;15645:21;;15601:220;;;15605:21;15219:608;;15117:710;;;;;:::o;15850:370::-;15921:5;15970:3;15963:4;15955:6;15951:17;15947:27;15937:122;;15978:79;;:::i;:::-;15937:122;16095:6;16082:20;16120:94;16210:3;16202:6;16195:4;16187:6;16183:17;16120:94;:::i;:::-;16111:103;;15927:293;15850:370;;;;:::o;16226:894::-;16344:6;16352;16401:2;16389:9;16380:7;16376:23;16372:32;16369:119;;;16407:79;;:::i;:::-;16369:119;16555:1;16544:9;16540:17;16527:31;16585:18;16577:6;16574:30;16571:117;;;16607:79;;:::i;:::-;16571:117;16712:78;16782:7;16773:6;16762:9;16758:22;16712:78;:::i;:::-;16702:88;;16498:302;16867:2;16856:9;16852:18;16839:32;16898:18;16890:6;16887:30;16884:117;;;16920:79;;:::i;:::-;16884:117;17025:78;17095:7;17086:6;17075:9;17071:22;17025:78;:::i;:::-;17015:88;;16810:303;16226:894;;;;;:::o;17126:114::-;17193:6;17227:5;17221:12;17211:22;;17126:114;;;:::o;17246:184::-;17345:11;17379:6;17374:3;17367:19;17419:4;17414:3;17410:14;17395:29;;17246:184;;;;:::o;17436:132::-;17503:4;17526:3;17518:11;;17556:4;17551:3;17547:14;17539:22;;17436:132;;;:::o;17574:108::-;17651:24;17669:5;17651:24;:::i;:::-;17646:3;17639:37;17574:108;;:::o;17688:179::-;17757:10;17778:46;17820:3;17812:6;17778:46;:::i;:::-;17856:4;17851:3;17847:14;17833:28;;17688:179;;;;:::o;17873:113::-;17943:4;17975;17970:3;17966:14;17958:22;;17873:113;;;:::o;18022:732::-;18141:3;18170:54;18218:5;18170:54;:::i;:::-;18240:86;18319:6;18314:3;18240:86;:::i;:::-;18233:93;;18350:56;18400:5;18350:56;:::i;:::-;18429:7;18460:1;18445:284;18470:6;18467:1;18464:13;18445:284;;;18546:6;18540:13;18573:63;18632:3;18617:13;18573:63;:::i;:::-;18566:70;;18659:60;18712:6;18659:60;:::i;:::-;18649:70;;18505:224;18492:1;18489;18485:9;18480:14;;18445:284;;;18449:14;18745:3;18738:10;;18146:608;;;18022:732;;;;:::o;18760:373::-;18903:4;18941:2;18930:9;18926:18;18918:26;;18990:9;18984:4;18980:20;18976:1;18965:9;18961:17;18954:47;19018:108;19121:4;19112:6;19018:108;:::i;:::-;19010:116;;18760:373;;;;:::o;19139:509::-;19208:6;19257:2;19245:9;19236:7;19232:23;19228:32;19225:119;;;19263:79;;:::i;:::-;19225:119;19411:1;19400:9;19396:17;19383:31;19441:18;19433:6;19430:30;19427:117;;;19463:79;;:::i;:::-;19427:117;19568:63;19623:7;19614:6;19603:9;19599:22;19568:63;:::i;:::-;19558:73;;19354:287;19139:509;;;;:::o;19654:468::-;19719:6;19727;19776:2;19764:9;19755:7;19751:23;19747:32;19744:119;;;19782:79;;:::i;:::-;19744:119;19902:1;19927:53;19972:7;19963:6;19952:9;19948:22;19927:53;:::i;:::-;19917:63;;19873:117;20029:2;20055:50;20097:7;20088:6;20077:9;20073:22;20055:50;:::i;:::-;20045:60;;20000:115;19654:468;;;;;:::o;20128:765::-;20214:6;20222;20230;20238;20287:3;20275:9;20266:7;20262:23;20258:33;20255:120;;;20294:79;;:::i;:::-;20255:120;20414:1;20439:53;20484:7;20475:6;20464:9;20460:22;20439:53;:::i;:::-;20429:63;;20385:117;20541:2;20567:53;20612:7;20603:6;20592:9;20588:22;20567:53;:::i;:::-;20557:63;;20512:118;20669:2;20695:53;20740:7;20731:6;20720:9;20716:22;20695:53;:::i;:::-;20685:63;;20640:118;20797:2;20823:53;20868:7;20859:6;20848:9;20844:22;20823:53;:::i;:::-;20813:63;;20768:118;20128:765;;;;;;;:::o;20899:474::-;20967:6;20975;21024:2;21012:9;21003:7;20999:23;20995:32;20992:119;;;21030:79;;:::i;:::-;20992:119;21150:1;21175:53;21220:7;21211:6;21200:9;21196:22;21175:53;:::i;:::-;21165:63;;21121:117;21277:2;21303:53;21348:7;21339:6;21328:9;21324:22;21303:53;:::i;:::-;21293:63;;21248:118;20899:474;;;;;:::o;21379:1089::-;21483:6;21491;21499;21507;21515;21564:3;21552:9;21543:7;21539:23;21535:33;21532:120;;;21571:79;;:::i;:::-;21532:120;21691:1;21716:53;21761:7;21752:6;21741:9;21737:22;21716:53;:::i;:::-;21706:63;;21662:117;21818:2;21844:53;21889:7;21880:6;21869:9;21865:22;21844:53;:::i;:::-;21834:63;;21789:118;21946:2;21972:53;22017:7;22008:6;21997:9;21993:22;21972:53;:::i;:::-;21962:63;;21917:118;22074:2;22100:53;22145:7;22136:6;22125:9;22121:22;22100:53;:::i;:::-;22090:63;;22045:118;22230:3;22219:9;22215:19;22202:33;22262:18;22254:6;22251:30;22248:117;;;22284:79;;:::i;:::-;22248:117;22389:62;22443:7;22434:6;22423:9;22419:22;22389:62;:::i;:::-;22379:72;;22173:288;21379:1089;;;;;;;;:::o;22474:230::-;22614:34;22610:1;22602:6;22598:14;22591:58;22683:13;22678:2;22670:6;22666:15;22659:38;22474:230;:::o;22710:366::-;22852:3;22873:67;22937:2;22932:3;22873:67;:::i;:::-;22866:74;;22949:93;23038:3;22949:93;:::i;:::-;23067:2;23062:3;23058:12;23051:19;;22710:366;;;:::o;23082:419::-;23248:4;23286:2;23275:9;23271:18;23263:26;;23335:9;23329:4;23325:20;23321:1;23310:9;23306:17;23299:47;23363:131;23489:4;23363:131;:::i;:::-;23355:139;;23082:419;;;:::o;23507:180::-;23555:77;23552:1;23545:88;23652:4;23649:1;23642:15;23676:4;23673:1;23666:15;23693:320;23737:6;23774:1;23768:4;23764:12;23754:22;;23821:1;23815:4;23811:12;23842:18;23832:81;;23898:4;23890:6;23886:17;23876:27;;23832:81;23960:2;23952:6;23949:14;23929:18;23926:38;23923:84;;;23979:18;;:::i;:::-;23923:84;23744:269;23693:320;;;:::o;24019:148::-;24121:11;24158:3;24143:18;;24019:148;;;;:::o;24173:141::-;24222:4;24245:3;24237:11;;24268:3;24265:1;24258:14;24302:4;24299:1;24289:18;24281:26;;24173:141;;;:::o;24344:845::-;24447:3;24484:5;24478:12;24513:36;24539:9;24513:36;:::i;:::-;24565:89;24647:6;24642:3;24565:89;:::i;:::-;24558:96;;24685:1;24674:9;24670:17;24701:1;24696:137;;;;24847:1;24842:341;;;;24663:520;;24696:137;24780:4;24776:9;24765;24761:25;24756:3;24749:38;24816:6;24811:3;24807:16;24800:23;;24696:137;;24842:341;24909:38;24941:5;24909:38;:::i;:::-;24969:1;24983:154;24997:6;24994:1;24991:13;24983:154;;;25071:7;25065:14;25061:1;25056:3;25052:11;25045:35;25121:1;25112:7;25108:15;25097:26;;25019:4;25016:1;25012:12;25007:17;;24983:154;;;25166:6;25161:3;25157:16;25150:23;;24849:334;;24663:520;;24451:738;;24344:845;;;;:::o;25195:377::-;25301:3;25329:39;25362:5;25329:39;:::i;:::-;25384:89;25466:6;25461:3;25384:89;:::i;:::-;25377:96;;25482:52;25527:6;25522:3;25515:4;25508:5;25504:16;25482:52;:::i;:::-;25559:6;25554:3;25550:16;25543:23;;25305:267;25195:377;;;;:::o;25578:429::-;25755:3;25777:92;25865:3;25856:6;25777:92;:::i;:::-;25770:99;;25886:95;25977:3;25968:6;25886:95;:::i;:::-;25879:102;;25998:3;25991:10;;25578:429;;;;;:::o;26013:167::-;26153:19;26149:1;26141:6;26137:14;26130:43;26013:167;:::o;26186:366::-;26328:3;26349:67;26413:2;26408:3;26349:67;:::i;:::-;26342:74;;26425:93;26514:3;26425:93;:::i;:::-;26543:2;26538:3;26534:12;26527:19;;26186:366;;;:::o;26558:419::-;26724:4;26762:2;26751:9;26747:18;26739:26;;26811:9;26805:4;26801:20;26797:1;26786:9;26782:17;26775:47;26839:131;26965:4;26839:131;:::i;:::-;26831:139;;26558:419;;;:::o;26983:166::-;27123:18;27119:1;27111:6;27107:14;27100:42;26983:166;:::o;27155:366::-;27297:3;27318:67;27382:2;27377:3;27318:67;:::i;:::-;27311:74;;27394:93;27483:3;27394:93;:::i;:::-;27512:2;27507:3;27503:12;27496:19;;27155:366;;;:::o;27527:419::-;27693:4;27731:2;27720:9;27716:18;27708:26;;27780:9;27774:4;27770:20;27766:1;27755:9;27751:17;27744:47;27808:131;27934:4;27808:131;:::i;:::-;27800:139;;27527:419;;;:::o;27952:167::-;28092:19;28088:1;28080:6;28076:14;28069:43;27952:167;:::o;28125:366::-;28267:3;28288:67;28352:2;28347:3;28288:67;:::i;:::-;28281:74;;28364:93;28453:3;28364:93;:::i;:::-;28482:2;28477:3;28473:12;28466:19;;28125:366;;;:::o;28497:419::-;28663:4;28701:2;28690:9;28686:18;28678:26;;28750:9;28744:4;28740:20;28736:1;28725:9;28721:17;28714:47;28778:131;28904:4;28778:131;:::i;:::-;28770:139;;28497:419;;;:::o;28922:168::-;29062:20;29058:1;29050:6;29046:14;29039:44;28922:168;:::o;29096:366::-;29238:3;29259:67;29323:2;29318:3;29259:67;:::i;:::-;29252:74;;29335:93;29424:3;29335:93;:::i;:::-;29453:2;29448:3;29444:12;29437:19;;29096:366;;;:::o;29468:419::-;29634:4;29672:2;29661:9;29657:18;29649:26;;29721:9;29715:4;29711:20;29707:1;29696:9;29692:17;29685:47;29749:131;29875:4;29749:131;:::i;:::-;29741:139;;29468:419;;;:::o;29893:180::-;29941:77;29938:1;29931:88;30038:4;30035:1;30028:15;30062:4;30059:1;30052:15;30079:305;30119:3;30138:20;30156:1;30138:20;:::i;:::-;30133:25;;30172:20;30190:1;30172:20;:::i;:::-;30167:25;;30326:1;30258:66;30254:74;30251:1;30248:81;30245:107;;;30332:18;;:::i;:::-;30245:107;30376:1;30373;30369:9;30362:16;;30079:305;;;;:::o;30390:182::-;30530:34;30526:1;30518:6;30514:14;30507:58;30390:182;:::o;30578:366::-;30720:3;30741:67;30805:2;30800:3;30741:67;:::i;:::-;30734:74;;30817:93;30906:3;30817:93;:::i;:::-;30935:2;30930:3;30926:12;30919:19;;30578:366;;;:::o;30950:419::-;31116:4;31154:2;31143:9;31139:18;31131:26;;31203:9;31197:4;31193:20;31189:1;31178:9;31174:17;31167:47;31231:131;31357:4;31231:131;:::i;:::-;31223:139;;30950:419;;;:::o;31375:237::-;31515:34;31511:1;31503:6;31499:14;31492:58;31584:20;31579:2;31571:6;31567:15;31560:45;31375:237;:::o;31618:366::-;31760:3;31781:67;31845:2;31840:3;31781:67;:::i;:::-;31774:74;;31857:93;31946:3;31857:93;:::i;:::-;31975:2;31970:3;31966:12;31959:19;;31618:366;;;:::o;31990:419::-;32156:4;32194:2;32183:9;32179:18;32171:26;;32243:9;32237:4;32233:20;32229:1;32218:9;32214:17;32207:47;32271:131;32397:4;32271:131;:::i;:::-;32263:139;;31990:419;;;:::o;32415:191::-;32455:4;32475:20;32493:1;32475:20;:::i;:::-;32470:25;;32509:20;32527:1;32509:20;:::i;:::-;32504:25;;32548:1;32545;32542:8;32539:34;;;32553:18;;:::i;:::-;32539:34;32598:1;32595;32591:9;32583:17;;32415:191;;;;:::o;32612:228::-;32752:34;32748:1;32740:6;32736:14;32729:58;32821:11;32816:2;32808:6;32804:15;32797:36;32612:228;:::o;32846:366::-;32988:3;33009:67;33073:2;33068:3;33009:67;:::i;:::-;33002:74;;33085:93;33174:3;33085:93;:::i;:::-;33203:2;33198:3;33194:12;33187:19;;32846:366;;;:::o;33218:419::-;33384:4;33422:2;33411:9;33407:18;33399:26;;33471:9;33465:4;33461:20;33457:1;33446:9;33442:17;33435:47;33499:131;33625:4;33499:131;:::i;:::-;33491:139;;33218:419;;;:::o;33643:180::-;33691:77;33688:1;33681:88;33788:4;33785:1;33778:15;33812:4;33809:1;33802:15;33829:233;33868:3;33891:24;33909:5;33891:24;:::i;:::-;33882:33;;33937:66;33930:5;33927:77;33924:103;;;34007:18;;:::i;:::-;33924:103;34054:1;34047:5;34043:13;34036:20;;33829:233;;;:::o;34068:169::-;34208:21;34204:1;34196:6;34192:14;34185:45;34068:169;:::o;34243:366::-;34385:3;34406:67;34470:2;34465:3;34406:67;:::i;:::-;34399:74;;34482:93;34571:3;34482:93;:::i;:::-;34600:2;34595:3;34591:12;34584:19;;34243:366;;;:::o;34615:419::-;34781:4;34819:2;34808:9;34804:18;34796:26;;34868:9;34862:4;34858:20;34854:1;34843:9;34839:17;34832:47;34896:131;35022:4;34896:131;:::i;:::-;34888:139;;34615:419;;;:::o;35040:228::-;35180:34;35176:1;35168:6;35164:14;35157:58;35249:11;35244:2;35236:6;35232:15;35225:36;35040:228;:::o;35274:366::-;35416:3;35437:67;35501:2;35496:3;35437:67;:::i;:::-;35430:74;;35513:93;35602:3;35513:93;:::i;:::-;35631:2;35626:3;35622:12;35615:19;;35274:366;;;:::o;35646:419::-;35812:4;35850:2;35839:9;35835:18;35827:26;;35899:9;35893:4;35889:20;35885:1;35874:9;35870:17;35863:47;35927:131;36053:4;35927:131;:::i;:::-;35919:139;;35646:419;;;:::o;36071:169::-;36211:21;36207:1;36199:6;36195:14;36188:45;36071:169;:::o;36246:366::-;36388:3;36409:67;36473:2;36468:3;36409:67;:::i;:::-;36402:74;;36485:93;36574:3;36485:93;:::i;:::-;36603:2;36598:3;36594:12;36587:19;;36246:366;;;:::o;36618:419::-;36784:4;36822:2;36811:9;36807:18;36799:26;;36871:9;36865:4;36861:20;36857:1;36846:9;36842:17;36835:47;36899:131;37025:4;36899:131;:::i;:::-;36891:139;;36618:419;;;:::o;37043:228::-;37183:34;37179:1;37171:6;37167:14;37160:58;37252:11;37247:2;37239:6;37235:15;37228:36;37043:228;:::o;37277:366::-;37419:3;37440:67;37504:2;37499:3;37440:67;:::i;:::-;37433:74;;37516:93;37605:3;37516:93;:::i;:::-;37634:2;37629:3;37625:12;37618:19;;37277:366;;;:::o;37649:419::-;37815:4;37853:2;37842:9;37838:18;37830:26;;37902:9;37896:4;37892:20;37888:1;37877:9;37873:17;37866:47;37930:131;38056:4;37930:131;:::i;:::-;37922:139;;37649:419;;;:::o;38074:165::-;38214:17;38210:1;38202:6;38198:14;38191:41;38074:165;:::o;38245:366::-;38387:3;38408:67;38472:2;38467:3;38408:67;:::i;:::-;38401:74;;38484:93;38573:3;38484:93;:::i;:::-;38602:2;38597:3;38593:12;38586:19;;38245:366;;;:::o;38617:419::-;38783:4;38821:2;38810:9;38806:18;38798:26;;38870:9;38864:4;38860:20;38856:1;38845:9;38841:17;38834:47;38898:131;39024:4;38898:131;:::i;:::-;38890:139;;38617:419;;;:::o;39042:332::-;39163:4;39201:2;39190:9;39186:18;39178:26;;39214:71;39282:1;39271:9;39267:17;39258:6;39214:71;:::i;:::-;39295:72;39363:2;39352:9;39348:18;39339:6;39295:72;:::i;:::-;39042:332;;;;;:::o;39380:225::-;39520:34;39516:1;39508:6;39504:14;39497:58;39589:8;39584:2;39576:6;39572:15;39565:33;39380:225;:::o;39611:366::-;39753:3;39774:67;39838:2;39833:3;39774:67;:::i;:::-;39767:74;;39850:93;39939:3;39850:93;:::i;:::-;39968:2;39963:3;39959:12;39952:19;;39611:366;;;:::o;39983:419::-;40149:4;40187:2;40176:9;40172:18;40164:26;;40236:9;40230:4;40226:20;40222:1;40211:9;40207:17;40200:47;40264:131;40390:4;40264:131;:::i;:::-;40256:139;;39983:419;;;:::o;40408:180::-;40456:77;40453:1;40446:88;40553:4;40550:1;40543:15;40577:4;40574:1;40567:15;40594:185;40634:1;40651:20;40669:1;40651:20;:::i;:::-;40646:25;;40685:20;40703:1;40685:20;:::i;:::-;40680:25;;40724:1;40714:35;;40729:18;;:::i;:::-;40714:35;40771:1;40768;40764:9;40759:14;;40594:185;;;;:::o;40785:348::-;40825:7;40848:20;40866:1;40848:20;:::i;:::-;40843:25;;40882:20;40900:1;40882:20;:::i;:::-;40877:25;;41070:1;41002:66;40998:74;40995:1;40992:81;40987:1;40980:9;40973:17;40969:105;40966:131;;;41077:18;;:::i;:::-;40966:131;41125:1;41122;41118:9;41107:20;;40785:348;;;;:::o;41139:86::-;41174:7;41214:4;41207:5;41203:16;41192:27;;41139:86;;;:::o;41231:237::-;41269:3;41288:18;41304:1;41288:18;:::i;:::-;41283:23;;41320:18;41336:1;41320:18;:::i;:::-;41315:23;;41410:1;41404:4;41400:12;41397:1;41394:19;41391:45;;;41416:18;;:::i;:::-;41391:45;41460:1;41457;41453:9;41446:16;;41231:237;;;;:::o;41474:220::-;41614:34;41610:1;41602:6;41598:14;41591:58;41683:3;41678:2;41670:6;41666:15;41659:28;41474:220;:::o;41700:366::-;41842:3;41863:67;41927:2;41922:3;41863:67;:::i;:::-;41856:74;;41939:93;42028:3;41939:93;:::i;:::-;42057:2;42052:3;42048:12;42041:19;;41700:366;;;:::o;42072:419::-;42238:4;42276:2;42265:9;42261:18;42253:26;;42325:9;42319:4;42315:20;42311:1;42300:9;42296:17;42289:47;42353:131;42479:4;42353:131;:::i;:::-;42345:139;;42072:419;;;:::o;42497:227::-;42637:34;42633:1;42625:6;42621:14;42614:58;42706:10;42701:2;42693:6;42689:15;42682:35;42497:227;:::o;42730:366::-;42872:3;42893:67;42957:2;42952:3;42893:67;:::i;:::-;42886:74;;42969:93;43058:3;42969:93;:::i;:::-;43087:2;43082:3;43078:12;43071:19;;42730:366;;;:::o;43102:419::-;43268:4;43306:2;43295:9;43291:18;43283:26;;43355:9;43349:4;43345:20;43341:1;43330:9;43326:17;43319:47;43383:131;43509:4;43383:131;:::i;:::-;43375:139;;43102:419;;;:::o;43527:224::-;43667:34;43663:1;43655:6;43651:14;43644:58;43736:7;43731:2;43723:6;43719:15;43712:32;43527:224;:::o;43757:366::-;43899:3;43920:67;43984:2;43979:3;43920:67;:::i;:::-;43913:74;;43996:93;44085:3;43996:93;:::i;:::-;44114:2;44109:3;44105:12;44098:19;;43757:366;;;:::o;44129:419::-;44295:4;44333:2;44322:9;44318:18;44310:26;;44382:9;44376:4;44372:20;44368:1;44357:9;44353:17;44346:47;44410:131;44536:4;44410:131;:::i;:::-;44402:139;;44129:419;;;:::o;44554:229::-;44694:34;44690:1;44682:6;44678:14;44671:58;44763:12;44758:2;44750:6;44746:15;44739:37;44554:229;:::o;44789:366::-;44931:3;44952:67;45016:2;45011:3;44952:67;:::i;:::-;44945:74;;45028:93;45117:3;45028:93;:::i;:::-;45146:2;45141:3;45137:12;45130:19;;44789:366;;;:::o;45161:419::-;45327:4;45365:2;45354:9;45350:18;45342:26;;45414:9;45408:4;45404:20;45400:1;45389:9;45385:17;45378:47;45442:131;45568:4;45442:131;:::i;:::-;45434:139;;45161:419;;;:::o;45586:634::-;45807:4;45845:2;45834:9;45830:18;45822:26;;45894:9;45888:4;45884:20;45880:1;45869:9;45865:17;45858:47;45922:108;46025:4;46016:6;45922:108;:::i;:::-;45914:116;;46077:9;46071:4;46067:20;46062:2;46051:9;46047:18;46040:48;46105:108;46208:4;46199:6;46105:108;:::i;:::-;46097:116;;45586:634;;;;;:::o;46226:222::-;46366:34;46362:1;46354:6;46350:14;46343:58;46435:5;46430:2;46422:6;46418:15;46411:30;46226:222;:::o;46454:366::-;46596:3;46617:67;46681:2;46676:3;46617:67;:::i;:::-;46610:74;;46693:93;46782:3;46693:93;:::i;:::-;46811:2;46806:3;46802:12;46795:19;;46454:366;;;:::o;46826:419::-;46992:4;47030:2;47019:9;47015:18;47007:26;;47079:9;47073:4;47069:20;47065:1;47054:9;47050:17;47043:47;47107:131;47233:4;47107:131;:::i;:::-;47099:139;;46826:419;;;:::o;47251:223::-;47391:34;47387:1;47379:6;47375:14;47368:58;47460:6;47455:2;47447:6;47443:15;47436:31;47251:223;:::o;47480:366::-;47622:3;47643:67;47707:2;47702:3;47643:67;:::i;:::-;47636:74;;47719:93;47808:3;47719:93;:::i;:::-;47837:2;47832:3;47828:12;47821:19;;47480:366;;;:::o;47852:419::-;48018:4;48056:2;48045:9;48041:18;48033:26;;48105:9;48099:4;48095:20;48091:1;48080:9;48076:17;48069:47;48133:131;48259:4;48133:131;:::i;:::-;48125:139;;47852:419;;;:::o;48277:98::-;48328:6;48362:5;48356:12;48346:22;;48277:98;;;:::o;48381:168::-;48464:11;48498:6;48493:3;48486:19;48538:4;48533:3;48529:14;48514:29;;48381:168;;;;:::o;48555:360::-;48641:3;48669:38;48701:5;48669:38;:::i;:::-;48723:70;48786:6;48781:3;48723:70;:::i;:::-;48716:77;;48802:52;48847:6;48842:3;48835:4;48828:5;48824:16;48802:52;:::i;:::-;48879:29;48901:6;48879:29;:::i;:::-;48874:3;48870:39;48863:46;;48645:270;48555:360;;;;:::o;48921:751::-;49144:4;49182:3;49171:9;49167:19;49159:27;;49196:71;49264:1;49253:9;49249:17;49240:6;49196:71;:::i;:::-;49277:72;49345:2;49334:9;49330:18;49321:6;49277:72;:::i;:::-;49359;49427:2;49416:9;49412:18;49403:6;49359:72;:::i;:::-;49441;49509:2;49498:9;49494:18;49485:6;49441:72;:::i;:::-;49561:9;49555:4;49551:20;49545:3;49534:9;49530:19;49523:49;49589:76;49660:4;49651:6;49589:76;:::i;:::-;49581:84;;48921:751;;;;;;;;:::o;49678:141::-;49734:5;49765:6;49759:13;49750:22;;49781:32;49807:5;49781:32;:::i;:::-;49678:141;;;;:::o;49825:349::-;49894:6;49943:2;49931:9;49922:7;49918:23;49914:32;49911:119;;;49949:79;;:::i;:::-;49911:119;50069:1;50094:63;50149:7;50140:6;50129:9;50125:22;50094:63;:::i;:::-;50084:73;;50040:127;49825:349;;;;:::o;50180:106::-;50224:8;50273:5;50268:3;50264:15;50243:36;;50180:106;;;:::o;50292:183::-;50327:3;50365:1;50347:16;50344:23;50341:128;;;50403:1;50400;50397;50382:23;50425:34;50456:1;50450:8;50425:34;:::i;:::-;50418:41;;50341:128;50292:183;:::o;50481:711::-;50520:3;50558:4;50540:16;50537:26;50534:39;;;50566:5;;50534:39;50595:20;;:::i;:::-;50670:1;50652:16;50648:24;50645:1;50639:4;50624:49;50703:4;50697:11;50802:16;50795:4;50787:6;50783:17;50780:39;50747:18;50739:6;50736:30;50720:113;50717:146;;;50848:5;;;;50717:146;50894:6;50888:4;50884:17;50930:3;50924:10;50957:18;50949:6;50946:30;50943:43;;;50979:5;;;;;;50943:43;51027:6;51020:4;51015:3;51011:14;51007:27;51086:1;51068:16;51064:24;51058:4;51054:35;51049:3;51046:44;51043:57;;;51093:5;;;;;;;51043:57;51110;51158:6;51152:4;51148:17;51140:6;51136:30;51130:4;51110:57;:::i;:::-;51183:3;51176:10;;50524:668;;;;;50481:711;;:::o;51198:239::-;51338:34;51334:1;51326:6;51322:14;51315:58;51407:22;51402:2;51394:6;51390:15;51383:47;51198:239;:::o;51443:366::-;51585:3;51606:67;51670:2;51665:3;51606:67;:::i;:::-;51599:74;;51682:93;51771:3;51682:93;:::i;:::-;51800:2;51795:3;51791:12;51784:19;;51443:366;;;:::o;51815:419::-;51981:4;52019:2;52008:9;52004:18;51996:26;;52068:9;52062:4;52058:20;52054:1;52043:9;52039:17;52032:47;52096:131;52222:4;52096:131;:::i;:::-;52088:139;;51815:419;;;:::o;52240:227::-;52380:34;52376:1;52368:6;52364:14;52357:58;52449:10;52444:2;52436:6;52432:15;52425:35;52240:227;:::o;52473:366::-;52615:3;52636:67;52700:2;52695:3;52636:67;:::i;:::-;52629:74;;52712:93;52801:3;52712:93;:::i;:::-;52830:2;52825:3;52821:12;52814:19;;52473:366;;;:::o;52845:419::-;53011:4;53049:2;53038:9;53034:18;53026:26;;53098:9;53092:4;53088:20;53084:1;53073:9;53069:17;53062:47;53126:131;53252:4;53126:131;:::i;:::-;53118:139;;52845:419;;;:::o;53270:1053::-;53593:4;53631:3;53620:9;53616:19;53608:27;;53645:71;53713:1;53702:9;53698:17;53689:6;53645:71;:::i;:::-;53726:72;53794:2;53783:9;53779:18;53770:6;53726:72;:::i;:::-;53845:9;53839:4;53835:20;53830:2;53819:9;53815:18;53808:48;53873:108;53976:4;53967:6;53873:108;:::i;:::-;53865:116;;54028:9;54022:4;54018:20;54013:2;54002:9;53998:18;53991:48;54056:108;54159:4;54150:6;54056:108;:::i;:::-;54048:116;;54212:9;54206:4;54202:20;54196:3;54185:9;54181:19;54174:49;54240:76;54311:4;54302:6;54240:76;:::i;:::-;54232:84;;53270:1053;;;;;;;;:::o;54329:77::-;54366:7;54395:5;54384:16;;54329:77;;;:::o;54412:118::-;54499:24;54517:5;54499:24;:::i;:::-;54494:3;54487:37;54412:118;;:::o;54536:332::-;54657:4;54695:2;54684:9;54680:18;54672:26;;54708:71;54776:1;54765:9;54761:17;54752:6;54708:71;:::i;:::-;54789:72;54857:2;54846:9;54842:18;54833:6;54789:72;:::i;:::-;54536:332;;;;;:::o;54874:180::-;54922:77;54919:1;54912:88;55019:4;55016:1;55009:15;55043:4;55040:1;55033:15;55060:174;55200:26;55196:1;55188:6;55184:14;55177:50;55060:174;:::o;55240:366::-;55382:3;55403:67;55467:2;55462:3;55403:67;:::i;:::-;55396:74;;55479:93;55568:3;55479:93;:::i;:::-;55597:2;55592:3;55588:12;55581:19;;55240:366;;;:::o;55612:419::-;55778:4;55816:2;55805:9;55801:18;55793:26;;55865:9;55859:4;55855:20;55851:1;55840:9;55836:17;55829:47;55893:131;56019:4;55893:131;:::i;:::-;55885:139;;55612:419;;;:::o;56037:181::-;56177:33;56173:1;56165:6;56161:14;56154:57;56037:181;:::o;56224:366::-;56366:3;56387:67;56451:2;56446:3;56387:67;:::i;:::-;56380:74;;56463:93;56552:3;56463:93;:::i;:::-;56581:2;56576:3;56572:12;56565:19;;56224:366;;;:::o;56596:419::-;56762:4;56800:2;56789:9;56785:18;56777:26;;56849:9;56843:4;56839:20;56835:1;56824:9;56820:17;56813:47;56877:131;57003:4;56877:131;:::i;:::-;56869:139;;56596:419;;;:::o;57021:221::-;57161:34;57157:1;57149:6;57145:14;57138:58;57230:4;57225:2;57217:6;57213:15;57206:29;57021:221;:::o;57248:366::-;57390:3;57411:67;57475:2;57470:3;57411:67;:::i;:::-;57404:74;;57487:93;57576:3;57487:93;:::i;:::-;57605:2;57600:3;57596:12;57589:19;;57248:366;;;:::o;57620:419::-;57786:4;57824:2;57813:9;57809:18;57801:26;;57873:9;57867:4;57863:20;57859:1;57848:9;57844:17;57837:47;57901:131;58027:4;57901:131;:::i;:::-;57893:139;;57620:419;;;:::o;58045:221::-;58185:34;58181:1;58173:6;58169:14;58162:58;58254:4;58249:2;58241:6;58237:15;58230:29;58045:221;:::o;58272:366::-;58414:3;58435:67;58499:2;58494:3;58435:67;:::i;:::-;58428:74;;58511:93;58600:3;58511:93;:::i;:::-;58629:2;58624:3;58620:12;58613:19;;58272:366;;;:::o;58644:419::-;58810:4;58848:2;58837:9;58833:18;58825:26;;58897:9;58891:4;58887:20;58883:1;58872:9;58868:17;58861:47;58925:131;59051:4;58925:131;:::i;:::-;58917:139;;58644:419;;;:::o;59069:214::-;59209:66;59205:1;59197:6;59193:14;59186:90;59069:214;:::o;59289:400::-;59449:3;59470:84;59552:1;59547:3;59470:84;:::i;:::-;59463:91;;59563:93;59652:3;59563:93;:::i;:::-;59681:1;59676:3;59672:11;59665:18;;59289:400;;;:::o;59695:79::-;59734:7;59763:5;59752:16;;59695:79;;;:::o;59780:157::-;59885:45;59905:24;59923:5;59905:24;:::i;:::-;59885:45;:::i;:::-;59880:3;59873:58;59780:157;;:::o;59943:663::-;60184:3;60206:148;60350:3;60206:148;:::i;:::-;60199:155;;60364:75;60435:3;60426:6;60364:75;:::i;:::-;60464:2;60459:3;60455:12;60448:19;;60477:75;60548:3;60539:6;60477:75;:::i;:::-;60577:2;60572:3;60568:12;60561:19;;60597:3;60590:10;;59943:663;;;;;:::o;60612:112::-;60695:22;60711:5;60695:22;:::i;:::-;60690:3;60683:35;60612:112;;:::o;60730:545::-;60903:4;60941:3;60930:9;60926:19;60918:27;;60955:71;61023:1;61012:9;61008:17;60999:6;60955:71;:::i;:::-;61036:68;61100:2;61089:9;61085:18;61076:6;61036:68;:::i;:::-;61114:72;61182:2;61171:9;61167:18;61158:6;61114:72;:::i;:::-;61196;61264:2;61253:9;61249:18;61240:6;61196:72;:::i;:::-;60730:545;;;;;;;:::o;61281:664::-;61486:4;61524:3;61513:9;61509:19;61501:27;;61538:71;61606:1;61595:9;61591:17;61582:6;61538:71;:::i;:::-;61619:72;61687:2;61676:9;61672:18;61663:6;61619:72;:::i;:::-;61701;61769:2;61758:9;61754:18;61745:6;61701:72;:::i;:::-;61783;61851:2;61840:9;61836:18;61827:6;61783:72;:::i;:::-;61865:73;61933:3;61922:9;61918:19;61909:6;61865:73;:::i;:::-;61281:664;;;;;;;;:::o

Swarm Source

ipfs://6eec7f07e7beaa98735f7761c43bee87bc718fdfb34d3bde7b6e9e3923d389ad
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.