ETH Price: $2,355.97 (+0.64%)
Gas: 6.13 Gwei

Token

FriendsinHighPlaces (FiHP)
 

Overview

Max Total Supply

100 FiHP

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 FiHP
0xe1ca46dcd23656e6317105f79ed787ee2337afa7
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:
FriendsinHighPlaces

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 8 of 18: FriendsinHighPlaces.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./ECDSA.sol";
import "./EIP712.sol";
import "./Payment.sol";

contract FriendsinHighPlaces is ERC721A,  EIP712, Ownable, Payment {
    using Strings for uint256;
    string public baseURI;

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

    //settings
  	uint256 public maxSupply = 1000;
	bool private genesisStatus = false;
	bool private phase1Status = false;
    bool private phase2Status = false;
	bool private phase3Status = false;
	bool private phase1Whitelist = false;
	bool private phase2Whitelist = false;
	bool private phase3Whitelist = false;
	uint256 private priceGenesis = 1.0 ether;
	uint256 private pricePhase1 = 2.0 ether;
	uint256 private pricePhase2 = 2.0 ether; //subject to change
	uint256 private pricePhase3 = 2.0 ether; //subject to change
	uint256 private genesisSupply = 100; 
	uint256 private phase1Supply = 300;
	uint256 private phase2Supply = 300;
	uint256 private phase3Supply = 300;
	uint256 private maxMintPerTxGenesis = 2;
    uint256 private maxMintPerWalletGenesis = 2;
	uint256 private maxMintPerTxWhitelist1 = 2;  //subject to change
    uint256 private maxMintPerWalletWhitelist1 = 2;  //subject to change
	uint256 private maxMintPerTxWhitelist2 = 2;  //subject to change
    uint256 private maxMintPerWalletWhitelist2 = 2;  //subject to change
	uint256 private maxMintPerTxWhitelist3 = 2;  //subject to change
    uint256 private maxMintPerWalletWhitelist3 = 2;  //subject to change
	uint256 public totalGenesis;
	uint256 public totalPhase1;
	uint256 public totalPhase2;
	uint256 public totalPhase3;
    
    //shares
	address[] private addressList = [0x8364F26C0C68a187eDf763883E52B21aF6F93924];

	uint[] private shareList = [100];

	//mappings
    mapping(address => uint256) private mintCountMapGenesis;
    mapping(address => uint256) private allowedMintCountMapGenesis;
    mapping(address => uint256) private mintCountMapWhitelist1;
    mapping(address => uint256) private allowedMintCountMapWhitelist1;
    mapping(address => uint256) private mintCountMapWhitelist2;
    mapping(address => uint256) private allowedMintCountMapWhitelist2;
    mapping(address => uint256) private mintCountMapWhitelist3;
    mapping(address => uint256) private allowedMintCountMapWhitelist3;
	
	constructor(
        	string memory _name,
	string memory _symbol,
	string memory _initBaseURI
    ) 
    ERC721(_name, _symbol) 
    EIP712(SINGING_DOMAIN, SIGNATURE_VERSION) 
    Payment(addressList, shareList) {
    setURI(_initBaseURI); 
    }

 	function mintGenesis(uint256 _tokenAmount) public payable {
  	    uint256 s = totalSupply();
        require(genesisStatus,"Genesis sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(_tokenAmount <= maxMintPerTxGenesis);
		require(totalGenesis + _tokenAmount <= genesisSupply,"This phase is sold out");
	    require(msg.value >= priceGenesis * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountGenesis(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
            for (uint256 i = 0; i < _tokenAmount; ++i) {
            _safeMint(msg.sender, s + i, "");
       	}
	   totalGenesis += _tokenAmount;
	   updateMintCountGenesis(msg.sender, _tokenAmount);
    }

 	function mintPhase1(uint256 _tokenAmount, string memory name, bytes memory signature) public payable {
  		uint256 s = totalSupply();
        require(!phase1Whitelist || check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
	    require(phase1Status,"Public sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	   	require(_tokenAmount <= maxMintPerTxWhitelist1);
	    require( s + _tokenAmount <= maxSupply, "Mint less");
		require(totalPhase1 + _tokenAmount <= phase1Supply,"This phase is sold out");
	    require(msg.value >= pricePhase1 * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountWhitelist1(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       for (uint256 i = 0; i < _tokenAmount; ++i) {
       _safeMint(msg.sender, s + i, "");
       	}
		totalPhase1 += _tokenAmount;
		updateMintCountWhitelist1(msg.sender, _tokenAmount);
    }

 	function mintPhase2(uint256 _tokenAmount, string memory name, bytes memory signature) public payable {
  		uint256 s = totalSupply();
        require(!phase2Whitelist || check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
	    require(phase2Status,"Public sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(_tokenAmount <= maxMintPerTxWhitelist2);
		require( s + _tokenAmount <= maxSupply, "Mint less");
		require(totalPhase2 + _tokenAmount <= phase2Supply,"This phase is sold out");
	    require(msg.value >= pricePhase2 * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountWhitelist2(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       for (uint256 i = 0; i < _tokenAmount; ++i) {
       _safeMint(msg.sender, s + i, "");
       	}
		totalPhase2 += _tokenAmount;
		updateMintCountWhitelist2(msg.sender, _tokenAmount);
    }

  	function mintPhase3(uint256 _tokenAmount, string memory name, bytes memory signature) public payable {
  		uint256 s = totalSupply();
        require(!phase3Whitelist || check(name, signature) == msg.sender, "Signature Invalid"); //server side signature
	    require(phase3Status,"Public sale is not active");
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(_tokenAmount <= maxMintPerTxWhitelist3);
		require( s + _tokenAmount <= maxSupply, "Mint less");
		require(totalPhase3 + _tokenAmount <= phase3Supply,"This phase is sold out");
	    require(msg.value >= pricePhase3 * _tokenAmount, "ETH input is wrong");
		require(allowedMintCountWhitelist3(msg.sender) >= _tokenAmount,"You minted too many");
		require(tx.origin == msg.sender);  //stop contract buying
       for (uint256 i = 0; i < _tokenAmount; ++i) {
       _safeMint(msg.sender, s + i, "");
       	}
		totalPhase3 += _tokenAmount;
		updateMintCountWhitelist3(msg.sender, _tokenAmount);
    }

    // admin minting
	function giftGenesis(uint256 _tokenAmount, address addr) public onlyOwner {
  	    uint256 s = totalSupply();
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(totalGenesis + _tokenAmount <= genesisSupply,"This phase is sold out");
            for (uint256 i = 0; i < _tokenAmount; ++i) {
            _safeMint(addr, s + i, "");
       	}
	   totalGenesis += _tokenAmount;
    }
	function giftPhase1(uint256 _tokenAmount, address addr) public onlyOwner {
  	    uint256 s = totalSupply();
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(totalPhase1 + _tokenAmount <= phase1Supply,"This phase is sold out");
            for (uint256 i = 0; i < _tokenAmount; ++i) {
            _safeMint(addr, s + i, "");
       	}
	   totalPhase1 += _tokenAmount;
    }
	function giftPhase2(uint256 _tokenAmount, address addr) public onlyOwner {
  	    uint256 s = totalSupply();
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(totalPhase2 + _tokenAmount <= phase2Supply,"This phase is sold out");
            for (uint256 i = 0; i < _tokenAmount; ++i) {
            _safeMint(addr, s + i, "");
       	}
	   totalPhase2 += _tokenAmount;
    }
	function giftPhase3(uint256 _tokenAmount, address addr) public onlyOwner {
  	    uint256 s = totalSupply();
        require(_tokenAmount > 0, "Mint more than 0" );
	    require(s + _tokenAmount <= maxSupply, "Mint less");
		require(totalPhase3 + _tokenAmount <= phase3Supply,"This phase is sold out");
            for (uint256 i = 0; i < _tokenAmount; ++i) {
            _safeMint(addr, s + i, "");
       	}
	   totalPhase3 += _tokenAmount;
    }

	function updateMintCountGenesis(address minter, uint256 count) private {
    mintCountMapGenesis[minter] += count;
    }

    function allowedMintCountGenesis(address minter) public view returns (uint256) {
    return maxMintPerWalletGenesis - mintCountMapGenesis[minter];
    }

	function updateMintCountWhitelist1(address minter, uint256 count) private {
    mintCountMapWhitelist1[minter] += count;
    }

    function allowedMintCountWhitelist1(address minter) public view returns (uint256) {
    return maxMintPerWalletWhitelist1 - mintCountMapWhitelist1[minter];
    }

	function updateMintCountWhitelist2(address minter, uint256 count) private {
    mintCountMapWhitelist2[minter] += count;
    }

    function allowedMintCountWhitelist2(address minter) public view returns (uint256) {
    return maxMintPerWalletWhitelist2 - mintCountMapWhitelist2[minter];
    }

	function updateMintCountWhitelist3(address minter, uint256 count) private {
    mintCountMapWhitelist3[minter] += count;
    }

    function allowedMintCountWhitelist3(address minter) public view returns (uint256) {
    return maxMintPerWalletWhitelist3 - mintCountMapWhitelist3[minter];
    }

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

	//read metadata
	function _baseURI() internal view virtual returns (string memory) {
		return baseURI;
	}
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		require(tokenId <= maxSupply);
		string memory currentBaseURI = _baseURI();
			return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}

    //price switch
	function setGenesisPrice(uint256 _newPrice) public onlyOwner {
		priceGenesis = _newPrice;
	}
	function setPhase1Price(uint256 _newPrice) public onlyOwner {
		pricePhase1 = _newPrice;
	}
	function setPhase2Price(uint256 _newPrice) public onlyOwner {
		pricePhase2 = _newPrice;
	}
	function setPhase3Price(uint256 _newPrice) public onlyOwner {
		pricePhase3 = _newPrice;
	}

    //onoff switch
	function setGenesis(bool _status) public onlyOwner {
		genesisStatus = _status;
	}
	function setPhase1(bool _status) public onlyOwner {
		phase1Status = _status;
	}
	function setPhase2(bool _status) public onlyOwner {
		phase2Status = _status;
	}
	function setPhase3(bool _status) public onlyOwner {
		phase3Status = _status;
	}

	 //whitelist switch
	function setPhase1Whitelist(bool _status) public onlyOwner {
		phase1Whitelist = _status;
	}
	function setPhase2Whitelist(bool _status) public onlyOwner {
		phase2Whitelist = _status;
	}
	function setPhase3Whitelist(bool _status) public onlyOwner {
		phase3Whitelist = _status;
	}

	//write metadata
	function setURI(string memory _newBaseURI) public onlyOwner {
		baseURI = _newBaseURI;
	}

	//max switches
	function setMaxPerWalletGenesis(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletGenesis = _newMaxMintAmount;
	}
	function setMaxPerTxGenesis(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxGenesis = _newMaxAmount;
	}
	function setMaxPerWalletWhitelist1(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletWhitelist1 = _newMaxMintAmount;
	}
	function setMaxPerTxWhitelist1(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxWhitelist1 = _newMaxAmount;
	}
	function setMaxPerWalletWhitelist2(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletWhitelist2 = _newMaxMintAmount;
	}
	function setMaxPerTxWhitelist2(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxWhitelist2 = _newMaxAmount;
	}
	function setMaxPerWalletWhitelist3(uint256 _newMaxMintAmount) public onlyOwner {
	maxMintPerWalletWhitelist3 = _newMaxMintAmount;
	}
	function setMaxPerTxWhitelist3(uint256 _newMaxAmount) public onlyOwner {
	maxMintPerTxWhitelist3 = _newMaxAmount;
	}

    function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
		require(success);
	}

}

File 1 of 18: 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);
    }

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

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

File 2 of 18: 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 18: 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 18: 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 18: 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 6 of 18: ERC721.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }     
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
	function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 18: ERC721A.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721.sol";
import "./IERC721Enumerable.sol";
abstract contract ERC721A is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721A.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 9 of 18: Guard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract Guard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier noRentry() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 10 of 18: 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 11 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 12 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 14 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 18: 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 16 of 18: Payment.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 18 of 18: 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":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountWhitelist1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountWhitelist2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCountWhitelist3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"giftGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"giftPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"giftPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"giftPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintGenesis","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPhase1","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPhase2","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPhase3","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setGenesisPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxWhitelist1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxWhitelist2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxAmount","type":"uint256"}],"name":"setMaxPerTxWhitelist3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletWhitelist1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletWhitelist2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxPerWalletWhitelist3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPhase1Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase1Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPhase2Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase2Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPhase3Price","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setPhase3Whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPhase3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6103e8600c55600d805466ffffffffffffff19169055670de0b6b3a7640000600e55671bc16d674ec80000600f8190556010819055601155606460125561012c6013819055601481905560155560026016819055601781905560188190556019819055601a819055601b819055601c819055601d55610160604052738364f26c0c68a187edf763883e52b21af6f93924610140908152620000a5906022906001620006ad565b50604080516020810190915260648152620000c590602390600162000717565b50348015620000d357600080fd5b5060405162005e7638038062005e76833981016040819052620000f691620008bb565b60228054806020026020016040519081016040528092919081815260200182805480156200014e57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200012f575b50505050506023805480602002602001604051908101604052809291908181526020018280548015620001a157602002820191906000526020600020905b8154815260200190600101908083116200018c575b5050505050604051806040016040528060048152602001630464948560e41b815250604051806040016040528060018152602001603160f81b81525086868160009080519060200190620001f79291906200075a565b5080516200020d9060019060208401906200075a565b5050825160209384012082519284019290922060e08390526101008190524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818901819052818301979097526060810194909452608080850193909352308483018190528151808603909301835260c0948501909152815191909601209052929092526101205250620002aa33620003f8565b80518251146200031c5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200036f5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000313565b60005b8251811015620003db57620003c68382815181106200039557620003956200094c565b6020026020010151838381518110620003b257620003b26200094c565b60200260200101516200044a60201b60201c565b80620003d28162000978565b91505062000372565b505050620003ef816200063860201b60201c565b505050620009ee565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004b75760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000313565b60008111620005095760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000313565b6001600160a01b03821660009081526008602052604090205415620005855760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000313565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b0384169081179091556000908152600860205260409020819055600654620005ef90829062000996565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620006945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000313565b8051620006a990600b9060208401906200075a565b5050565b82805482825590600052602060002090810192821562000705579160200282015b828111156200070557825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620006ce565b5062000713929150620007d7565b5090565b82805482825590600052602060002090810192821562000705579160200282015b8281111562000705578251829060ff1690559160200191906001019062000738565b8280546200076890620009b1565b90600052602060002090601f0160209004810192826200078c576000855562000705565b82601f10620007a757805160ff191683800117855562000705565b8280016001018555821562000705579182015b8281111562000705578251825591602001919060010190620007ba565b5b80821115620007135760008155600101620007d8565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200081657600080fd5b81516001600160401b0380821115620008335762000833620007ee565b604051601f8301601f19908116603f011681019082821181831017156200085e576200085e620007ee565b816040528381526020925086838588010111156200087b57600080fd5b600091505b838210156200089f578582018301518183018401529082019062000880565b83821115620008b15760008385830101525b9695505050505050565b600080600060608486031215620008d157600080fd5b83516001600160401b0380821115620008e957600080fd5b620008f78783880162000804565b945060208601519150808211156200090e57600080fd5b6200091c8783880162000804565b935060408601519150808211156200093357600080fd5b50620009428682870162000804565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156200098f576200098f62000962565b5060010190565b60008219821115620009ac57620009ac62000962565b500190565b600181811c90821680620009c657607f821691505b60208210811415620009e857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051610100516101205161543862000a3e6000396000614a0d01526000614a5c01526000614a3701526000614990015260006149ba015260006149e401526154386000f3fe6080604052600436106103fd5760003560e01c80638618329f1161020d578063bc6ecf2711610128578063df0cb350116100bb578063e6b2bff11161008a578063ef50177b1161006f578063ef50177b14610c54578063f2fcae5e14610c74578063f2fde38b14610c9457600080fd5b8063e6b2bff114610bde578063e985e9c514610bfe57600080fd5b8063df0cb35014610b83578063dff6324314610ba3578063e1efe4d414610bb6578063e33b7de314610bc957600080fd5b8063d5d385a1116100f7578063d5d385a114610b03578063d75d65aa14610b23578063d7dcb21114610b43578063de1a0f1414610b6357600080fd5b8063bc6ecf2714610a74578063c87b56dd14610a8a578063ce7c2ac214610aaa578063d5abeb0114610aed57600080fd5b80639997d82d116101a0578063ae29d3ae1161016f578063ae29d3ae146109fe578063aea5b82c14610a1e578063b88d4fde14610a3e578063bac94c1814610a5e57600080fd5b80639997d82d1461097e578063a22cb4651461099e578063a655c0a5146109be578063ad33970d146109de57600080fd5b8063919355af116101dc578063919355af146108e65780639202965e1461090657806395d89b41146109265780639852595c1461093b57600080fd5b80638618329f146108655780638b83209b146108855780638da5cb5b146108a55780639112bbbf146108d057600080fd5b80633ccfd60b116103185780635b795e5d116102ab57806370a082311161027a57806378608d651161025f57806378608d65146107f857806380e1299e146108185780638462151c1461083857600080fd5b806370a08231146107c3578063715018a6146107e357600080fd5b80635b795e5d1461074e57806361f364621461076e5780636352211e1461078e5780636c0360eb146107ae57600080fd5b806346672e0a116102e757806346672e0a146106ce57806348808c10146106ee5780634f6ccce71461070e578063587d38611461072e57600080fd5b80633ccfd60b1461067357806342213aab1461067b57806342842e0e1461068e5780634452be41146106ae57600080fd5b80631916558711610390578063237e07781161035f578063237e0778146105fe57806323b872dd1461061e5780632f745c591461063e5780633a98ef391461065e57600080fd5b8063191655871461058b5780631bba917d146105ab5780631bfa959b146105cb57806320b86474146105eb57600080fd5b8063081812fc116103cc578063081812fc146104f1578063095ea7b31461053657806318160ddd1461055657806318de6d821461057557600080fd5b806301ffc9a714610458578063022d8ac81461048d57806302fe5305146104af57806306fdde03146104cf57600080fd5b36610453577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561046457600080fd5b50610478610473366004614cd2565b610cb4565b60405190151581526020015b60405180910390f35b34801561049957600080fd5b506104ad6104a8366004614cef565b610d10565b005b3480156104bb57600080fd5b506104ad6104ca366004614de2565b610d81565b3480156104db57600080fd5b506104e4610dff565b6040516104849190614e8d565b3480156104fd57600080fd5b5061051161050c366004614cef565b610e91565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610484565b34801561054257600080fd5b506104ad610551366004614ec2565b610f37565b34801561056257600080fd5b506002545b604051908152602001610484565b34801561058157600080fd5b5061056760215481565b34801561059757600080fd5b506104ad6105a6366004614eee565b611090565b3480156105b757600080fd5b506104ad6105c6366004614cef565b6112cb565b3480156105d757600080fd5b506104ad6105e6366004614cef565b611337565b6104ad6105f9366004614f0b565b6113a3565b34801561060a57600080fd5b506104ad610619366004614cef565b6116cd565b34801561062a57600080fd5b506104ad610639366004614f78565b611739565b34801561064a57600080fd5b50610567610659366004614ec2565b6117c0565b34801561066a57600080fd5b50600654610567565b6104ad6118dc565b6104ad610689366004614f0b565b61199b565b34801561069a57600080fd5b506104ad6106a9366004614f78565b611cae565b3480156106ba57600080fd5b506105676106c9366004614eee565b611cc9565b3480156106da57600080fd5b506104ad6106e9366004614fce565b611cfc565b3480156106fa57600080fd5b50610511610709366004614fe9565b611d9d565b34801561071a57600080fd5b50610567610729366004614cef565b611db0565b34801561073a57600080fd5b506104ad610749366004614fce565b611e0d565b34801561075a57600080fd5b506104ad610769366004614cef565b611eab565b34801561077a57600080fd5b506104ad610789366004614cef565b611f17565b34801561079a57600080fd5b506105116107a9366004614cef565b611f83565b3480156107ba57600080fd5b506104e4612030565b3480156107cf57600080fd5b506105676107de366004614eee565b6120be565b3480156107ef57600080fd5b506104ad6121bd565b34801561080457600080fd5b506104ad61081336600461504d565b612230565b34801561082457600080fd5b50610567610833366004614eee565b6123f4565b34801561084457600080fd5b50610858610853366004614eee565b612427565b604051610484919061507d565b34801561087157600080fd5b50610567610880366004614eee565b612521565b34801561089157600080fd5b506105116108a0366004614cef565b612554565b3480156108b157600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610511565b3480156108dc57600080fd5b50610567601f5481565b3480156108f257600080fd5b506104ad610901366004614cef565b612591565b34801561091257600080fd5b506104ad610921366004614cef565b6125fd565b34801561093257600080fd5b506104e4612669565b34801561094757600080fd5b50610567610956366004614eee565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561098a57600080fd5b506104ad610999366004614fce565b612678565b3480156109aa57600080fd5b506104ad6109b93660046150c1565b612717565b3480156109ca57600080fd5b506104ad6109d9366004614cef565b612814565b3480156109ea57600080fd5b506104ad6109f936600461504d565b612880565b348015610a0a57600080fd5b506104ad610a19366004614fce565b612a3a565b348015610a2a57600080fd5b506104ad610a3936600461504d565b612adc565b348015610a4a57600080fd5b506104ad610a593660046150f6565b612c96565b348015610a6a57600080fd5b5061056760205481565b348015610a8057600080fd5b50610567601e5481565b348015610a9657600080fd5b506104e4610aa5366004614cef565b612d1e565b348015610ab657600080fd5b50610567610ac5366004614eee565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b348015610af957600080fd5b50610567600c5481565b348015610b0f57600080fd5b506104ad610b1e366004614cef565b612d8a565b348015610b2f57600080fd5b506104ad610b3e366004614cef565b612df6565b348015610b4f57600080fd5b506104ad610b5e36600461504d565b612e62565b348015610b6f57600080fd5b506104ad610b7e366004614fce565b61301c565b348015610b8f57600080fd5b50610567610b9e366004614eee565b6130bc565b6104ad610bb1366004614cef565b6130ef565b6104ad610bc4366004614f0b565b613375565b348015610bd557600080fd5b50600754610567565b348015610bea57600080fd5b506104ad610bf9366004614cef565b613686565b348015610c0a57600080fd5b50610478610c19366004615162565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610c6057600080fd5b506104ad610c6f366004614fce565b6136f2565b348015610c8057600080fd5b506104ad610c8f366004614fce565b61378a565b348015610ca057600080fd5b506104ad610caf366004614eee565b61382d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610d0a5750610d0a82613926565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d7c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601855565b60055473ffffffffffffffffffffffffffffffffffffffff163314610de85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b8051610dfb90600b906020840190614c14565b5050565b606060008054610e0e90615190565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90615190565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b5050505050905090565b6000610e9c82613a09565b610f0e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610d73565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610f4282611f83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fe65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d73565b3373ffffffffffffffffffffffffffffffffffffffff8216148061100f575061100f8133610c19565b6110815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d73565b61108b8383613a6d565b505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600860205260409020546111285760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610d73565b6000600754476111389190615213565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020908152604080832054600654600890935290832054939450919261117c908561522b565b6111869190615297565b61119091906152ab565b9050806112055760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610d73565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054611236908290615213565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461126a908290615213565b6007556112778382613b0d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601c55565b60055473ffffffffffffffffffffffffffffffffffffffff16331461139e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601055565b60006113ae60025490565b600d54909150640100000000900460ff1615806113e95750336113d18484611d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b6114355760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610d73565b600d54610100900460ff1661148c5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610d73565b600084116114dc5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b6018548411156114eb57600080fd5b600c546114f88583615213565b11156115465760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60135484601f546115579190615213565b11156115a55760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b83600f546115b3919061522b565b3410156116025760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b8361160c33612521565b101561165a5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b32331461166657600080fd5b60005b848110156116a4576116943361167f8385615213565b60405180602001604052806000815250613c33565b61169d816152c2565b9050611669565b5083601f60008282546116b79190615213565b909155506116c790503385613cbc565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601a55565b6117433382613cfa565b6117b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610d73565b61108b838383613e36565b60006117cb836120be565b82106118195760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610d73565b6000805b600254811015611893576002818154811061183a5761183a6152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156118835783821415611877579150610d0a9050565b611880826152c2565b91505b61188c816152c2565b905061181d565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610d73565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b604051600090339047908381818185875af1925050503d8060008114611985576040519150601f19603f3d011682016040523d82523d6000602084013e61198a565b606091505b505090508061199857600080fd5b50565b60006119a660025490565b600d549091506601000000000000900460ff1615806119e35750336119cb8484611d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b611a2f5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610d73565b600d546301000000900460ff16611a885760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610d73565b60008411611ad85760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b601c54841115611ae757600080fd5b600c54611af48583615213565b1115611b425760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60155484602154611b539190615213565b1115611ba15760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b83601154611baf919061522b565b341015611bfe5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b83611c08336123f4565b1015611c565760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b323314611c6257600080fd5b60005b84811015611c8b57611c7b3361167f8385615213565b611c84816152c2565b9050611c65565b508360216000828254611c9e9190615213565b909155506116c790503385614005565b61108b83838360405180602001604052806000815250612c96565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260246020526040812054601754610d0a91906152ab565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b6000611da9838361403a565b9392505050565b6000611dbb60025490565b8210611e095760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610d73565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600f55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f7e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600e55565b60008060028381548110611f9957611f996152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610d0a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610d73565b600b805461203d90615190565b80601f016020809104026020016040519081016040528092919081815260200182805461206990615190565b80156120b65780601f1061208b576101008083540402835291602001916120b6565b820191906000526020600020905b81548152906001019060200180831161209957829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166121495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610d73565b600254600090815b818110156121b4576002818154811061216c5761216c6152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156121a4576121a1836152c2565b92505b6121ad816152c2565b9050612151565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b61222e6000614052565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b60006122a260025490565b9050600083116122f45760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c546123018483615213565b111561234f5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60125483601e546123609190615213565b11156123ae5760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b838110156123d7576123c78361167f8385615213565b6123d0816152c2565b90506123b1565b5082601e60008282546123ea9190615213565b9091555050505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602a6020526040812054601d54610d0a91906152ab565b6060612432826120be565b6000106124815760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610d73565b600061248c836120be565b905060008167ffffffffffffffff8111156124a9576124a9614d08565b6040519080825280602002602001820160405280156124d2578160200160208202803683370190505b50905060005b82811015612519576124ea85826117c0565b8282815181106124fc576124fc6152fb565b602090810291909101015280612511816152c2565b9150506124d8565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260266020526040812054601954610d0a91906152ab565b6000600a8281548110612569576125696152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601655565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601755565b606060018054610e0e90615190565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821633141561277d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d73565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461287b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146128e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b60006128f260025490565b9050600083116129445760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c546129518483615213565b111561299f5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60135483601f546129b09190615213565b11156129fe5760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b83811015612a2757612a178361167f8385615213565b612a20816152c2565b9050612a01565b5082601f60008282546123ea9190615213565b60055473ffffffffffffffffffffffffffffffffffffffff163314612aa15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d805491151565010000000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314612b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b6000612b4e60025490565b905060008311612ba05760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c54612bad8483615213565b1115612bfb5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60145483602054612c0c9190615213565b1115612c5a5760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b83811015612c8357612c738361167f8385615213565b612c7c816152c2565b9050612c5d565b5082602060008282546123ea9190615213565b612ca03383613cfa565b612d125760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610d73565b6116c7848484846140c9565b6060600c54821115612d2f57600080fd5b6000612d39614152565b90506000815111612d595760405180602001604052806000815250611da9565b80612d6384614161565b604051602001612d7492919061532a565b6040516020818303038152906040529392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612df15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601d55565b60055473ffffffffffffffffffffffffffffffffffffffff163314612e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601955565b60055473ffffffffffffffffffffffffffffffffffffffff163314612ec95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b6000612ed460025490565b905060008311612f265760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c54612f338483615213565b1115612f815760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60155483602154612f929190615213565b1115612fe05760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b8381101561300957612ff98361167f8385615213565b613002816152c2565b9050612fe3565b5082602160008282546123ea9190615213565b60055473ffffffffffffffffffffffffffffffffffffffff1633146130835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260286020526040812054601b54610d0a91906152ab565b60006130fa60025490565b600d5490915060ff1661314f5760405162461bcd60e51b815260206004820152601a60248201527f47656e657369732073616c65206973206e6f74206163746976650000000000006044820152606401610d73565b6000821161319f5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c546131ac8383615213565b11156131fa5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60165482111561320957600080fd5b60125482601e5461321a9190615213565b11156132685760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b81600e54613276919061522b565b3410156132c55760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b816132cf33611cc9565b101561331d5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b32331461332957600080fd5b60005b82811015613352576133423361167f8385615213565b61334b816152c2565b905061332c565b5081601e60008282546133659190615213565b90915550610dfb90503383614293565b600061338060025490565b600d5490915065010000000000900460ff1615806133bc5750336133a48484611d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b6134085760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610d73565b600d5462010000900460ff166134605760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610d73565b600084116134b05760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b601a548411156134bf57600080fd5b600c546134cc8583615213565b111561351a5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b6014548460205461352b9190615213565b11156135795760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b83601054613587919061522b565b3410156135d65760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b836135e0336130bc565b101561362e5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b32331461363a57600080fd5b60005b84811015613663576136533361167f8385615213565b61365c816152c2565b905061363d565b5083602060008282546136769190615213565b909155506116c7905033856142c8565b60055473ffffffffffffffffffffffffffffffffffffffff1633146136ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601b55565b60055473ffffffffffffffffffffffffffffffffffffffff1633146137595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146137f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146138945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b73ffffffffffffffffffffffffffffffffffffffff811661391d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d73565b61199881614052565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806139b957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610d0a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610d0a565b60025460009082108015610d0a5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110613a4357613a436152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190613ac782611f83565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015613b5d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d73565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114613bb7576040519150601f19603f3d011682016040523d82523d6000602084013e613bbc565b606091505b505090508061108b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d73565b613c3d83836142fd565b613c4a6000848484614457565b61108b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d73565b73ffffffffffffffffffffffffffffffffffffffff821660009081526026602052604081208054839290613cf1908490615213565b90915550505050565b6000613d0582613a09565b613d775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610d73565b6000613d8283611f83565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613df157508373ffffffffffffffffffffffffffffffffffffffff16613dd984610e91565b73ffffffffffffffffffffffffffffffffffffffff16145b80613e2e575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613e5682611f83565b73ffffffffffffffffffffffffffffffffffffffff1614613edf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610d73565b73ffffffffffffffffffffffffffffffffffffffff8216613f675760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d73565b613f72600082613a6d565b8160028281548110613f8657613f866152fb565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602a602052604081208054839290613cf1908490615213565b6000806140468461462d565b9050613e2e8184614690565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6140d4848484613e36565b6140e084848484614457565b6116c75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d73565b6060600b8054610e0e90615190565b6060816141a157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156141cb57806141b5816152c2565b91506141c49050600a83615297565b91506141a5565b60008167ffffffffffffffff8111156141e6576141e6614d08565b6040519080825280601f01601f191660200182016040528015614210576020820181803683370190505b5090505b8415613e2e576142256001836152ab565b9150614232600a86615359565b61423d906030615213565b60f81b818381518110614252576142526152fb565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061428c600a86615297565b9450614214565b73ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604081208054839290613cf1908490615213565b73ffffffffffffffffffffffffffffffffffffffff821660009081526028602052604081208054839290613cf1908490615213565b73ffffffffffffffffffffffffffffffffffffffff82166143605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d73565b61436981613a09565b156143b65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d73565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614622576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906144ce90339089908890889060040161536d565b6020604051808303816000875af1925050508015614527575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252614524918101906153b6565b60015b6145d7573d808015614555576040519150601f19603f3d011682016040523d82523d6000602084013e61455a565b606091505b5080516145cf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d73565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613e2e565b506001949350505050565b6000610d0a7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001614675929190918252602082015260400190565b604051602081830303815290604052805190602001206146ac565b600080600061469f8585614715565b9150915061251981614785565b6000610d0a6146b9614976565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561474c5760208301516040840151606085015160001a61474087828585614aaa565b9450945050505061477e565b825160401415614776576020830151604084015161476b868383614bc2565b93509350505061477e565b506000905060025b9250929050565b6000816004811115614799576147996153d3565b14156147a25750565b60018160048111156147b6576147b66153d3565b14156148045760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d73565b6002816004811115614818576148186153d3565b14156148665760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d73565b600381600481111561487a5761487a6153d3565b14156148ee5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d73565b6004816004811115614902576149026153d3565b14156119985760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d73565b60003073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161480156149dc57507f000000000000000000000000000000000000000000000000000000000000000046145b15614a0657507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115614ae15750600090506003614bb9565b8460ff16601b14158015614af957508460ff16601c14155b15614b0a5750600090506004614bb9565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614b5e573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116614bb257600060019250925050614bb9565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681614bf860ff86901c601b615213565b9050614c0687828885614aaa565b935093505050935093915050565b828054614c2090615190565b90600052602060002090601f016020900481019282614c425760008555614c88565b82601f10614c5b57805160ff1916838001178555614c88565b82800160010185558215614c88579182015b82811115614c88578251825591602001919060010190614c6d565b50611e099291505b80821115611e095760008155600101614c90565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461199857600080fd5b600060208284031215614ce457600080fd5b8135611da981614ca4565b600060208284031215614d0157600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112614d4857600080fd5b813567ffffffffffffffff80821115614d6357614d63614d08565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614da957614da9614d08565b81604052838152866020858801011115614dc257600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215614df457600080fd5b813567ffffffffffffffff811115614e0b57600080fd5b613e2e84828501614d37565b60005b83811015614e32578181015183820152602001614e1a565b838111156116c75750506000910152565b60008151808452614e5b816020860160208601614e17565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611da96020830184614e43565b73ffffffffffffffffffffffffffffffffffffffff8116811461199857600080fd5b60008060408385031215614ed557600080fd5b8235614ee081614ea0565b946020939093013593505050565b600060208284031215614f0057600080fd5b8135611da981614ea0565b600080600060608486031215614f2057600080fd5b83359250602084013567ffffffffffffffff80821115614f3f57600080fd5b614f4b87838801614d37565b93506040860135915080821115614f6157600080fd5b50614f6e86828701614d37565b9150509250925092565b600080600060608486031215614f8d57600080fd5b8335614f9881614ea0565b92506020840135614fa881614ea0565b929592945050506040919091013590565b80358015158114614fc957600080fd5b919050565b600060208284031215614fe057600080fd5b611da982614fb9565b60008060408385031215614ffc57600080fd5b823567ffffffffffffffff8082111561501457600080fd5b61502086838701614d37565b9350602085013591508082111561503657600080fd5b5061504385828601614d37565b9150509250929050565b6000806040838503121561506057600080fd5b82359150602083013561507281614ea0565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156150b557835183529284019291840191600101615099565b50909695505050505050565b600080604083850312156150d457600080fd5b82356150df81614ea0565b91506150ed60208401614fb9565b90509250929050565b6000806000806080858703121561510c57600080fd5b843561511781614ea0565b9350602085013561512781614ea0565b925060408501359150606085013567ffffffffffffffff81111561514a57600080fd5b61515687828801614d37565b91505092959194509250565b6000806040838503121561517557600080fd5b823561518081614ea0565b9150602083013561507281614ea0565b600181811c908216806151a457607f821691505b602082108114156151de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115615226576152266151e4565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615263576152636151e4565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826152a6576152a6615268565b500490565b6000828210156152bd576152bd6151e4565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152f4576152f46151e4565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000835161533c818460208801614e17565b835190830190615350818360208801614e17565b01949350505050565b60008261536857615368615268565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526153ac6080830184614e43565b9695505050505050565b6000602082840312156153c857600080fd5b8151611da981614ca4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212206f492fc62dd54a08a8e46624168117457b3d50f1389bc6a94599ec28c37d776864736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013467269656e6473696e48696768506c6163657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446694850000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d595450635644585846614139526a5a536d785764566d71356455575943394375696743684366716f356578632f00000000000000000000

Deployed Bytecode

0x6080604052600436106103fd5760003560e01c80638618329f1161020d578063bc6ecf2711610128578063df0cb350116100bb578063e6b2bff11161008a578063ef50177b1161006f578063ef50177b14610c54578063f2fcae5e14610c74578063f2fde38b14610c9457600080fd5b8063e6b2bff114610bde578063e985e9c514610bfe57600080fd5b8063df0cb35014610b83578063dff6324314610ba3578063e1efe4d414610bb6578063e33b7de314610bc957600080fd5b8063d5d385a1116100f7578063d5d385a114610b03578063d75d65aa14610b23578063d7dcb21114610b43578063de1a0f1414610b6357600080fd5b8063bc6ecf2714610a74578063c87b56dd14610a8a578063ce7c2ac214610aaa578063d5abeb0114610aed57600080fd5b80639997d82d116101a0578063ae29d3ae1161016f578063ae29d3ae146109fe578063aea5b82c14610a1e578063b88d4fde14610a3e578063bac94c1814610a5e57600080fd5b80639997d82d1461097e578063a22cb4651461099e578063a655c0a5146109be578063ad33970d146109de57600080fd5b8063919355af116101dc578063919355af146108e65780639202965e1461090657806395d89b41146109265780639852595c1461093b57600080fd5b80638618329f146108655780638b83209b146108855780638da5cb5b146108a55780639112bbbf146108d057600080fd5b80633ccfd60b116103185780635b795e5d116102ab57806370a082311161027a57806378608d651161025f57806378608d65146107f857806380e1299e146108185780638462151c1461083857600080fd5b806370a08231146107c3578063715018a6146107e357600080fd5b80635b795e5d1461074e57806361f364621461076e5780636352211e1461078e5780636c0360eb146107ae57600080fd5b806346672e0a116102e757806346672e0a146106ce57806348808c10146106ee5780634f6ccce71461070e578063587d38611461072e57600080fd5b80633ccfd60b1461067357806342213aab1461067b57806342842e0e1461068e5780634452be41146106ae57600080fd5b80631916558711610390578063237e07781161035f578063237e0778146105fe57806323b872dd1461061e5780632f745c591461063e5780633a98ef391461065e57600080fd5b8063191655871461058b5780631bba917d146105ab5780631bfa959b146105cb57806320b86474146105eb57600080fd5b8063081812fc116103cc578063081812fc146104f1578063095ea7b31461053657806318160ddd1461055657806318de6d821461057557600080fd5b806301ffc9a714610458578063022d8ac81461048d57806302fe5305146104af57806306fdde03146104cf57600080fd5b36610453577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b34801561046457600080fd5b50610478610473366004614cd2565b610cb4565b60405190151581526020015b60405180910390f35b34801561049957600080fd5b506104ad6104a8366004614cef565b610d10565b005b3480156104bb57600080fd5b506104ad6104ca366004614de2565b610d81565b3480156104db57600080fd5b506104e4610dff565b6040516104849190614e8d565b3480156104fd57600080fd5b5061051161050c366004614cef565b610e91565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610484565b34801561054257600080fd5b506104ad610551366004614ec2565b610f37565b34801561056257600080fd5b506002545b604051908152602001610484565b34801561058157600080fd5b5061056760215481565b34801561059757600080fd5b506104ad6105a6366004614eee565b611090565b3480156105b757600080fd5b506104ad6105c6366004614cef565b6112cb565b3480156105d757600080fd5b506104ad6105e6366004614cef565b611337565b6104ad6105f9366004614f0b565b6113a3565b34801561060a57600080fd5b506104ad610619366004614cef565b6116cd565b34801561062a57600080fd5b506104ad610639366004614f78565b611739565b34801561064a57600080fd5b50610567610659366004614ec2565b6117c0565b34801561066a57600080fd5b50600654610567565b6104ad6118dc565b6104ad610689366004614f0b565b61199b565b34801561069a57600080fd5b506104ad6106a9366004614f78565b611cae565b3480156106ba57600080fd5b506105676106c9366004614eee565b611cc9565b3480156106da57600080fd5b506104ad6106e9366004614fce565b611cfc565b3480156106fa57600080fd5b50610511610709366004614fe9565b611d9d565b34801561071a57600080fd5b50610567610729366004614cef565b611db0565b34801561073a57600080fd5b506104ad610749366004614fce565b611e0d565b34801561075a57600080fd5b506104ad610769366004614cef565b611eab565b34801561077a57600080fd5b506104ad610789366004614cef565b611f17565b34801561079a57600080fd5b506105116107a9366004614cef565b611f83565b3480156107ba57600080fd5b506104e4612030565b3480156107cf57600080fd5b506105676107de366004614eee565b6120be565b3480156107ef57600080fd5b506104ad6121bd565b34801561080457600080fd5b506104ad61081336600461504d565b612230565b34801561082457600080fd5b50610567610833366004614eee565b6123f4565b34801561084457600080fd5b50610858610853366004614eee565b612427565b604051610484919061507d565b34801561087157600080fd5b50610567610880366004614eee565b612521565b34801561089157600080fd5b506105116108a0366004614cef565b612554565b3480156108b157600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610511565b3480156108dc57600080fd5b50610567601f5481565b3480156108f257600080fd5b506104ad610901366004614cef565b612591565b34801561091257600080fd5b506104ad610921366004614cef565b6125fd565b34801561093257600080fd5b506104e4612669565b34801561094757600080fd5b50610567610956366004614eee565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b34801561098a57600080fd5b506104ad610999366004614fce565b612678565b3480156109aa57600080fd5b506104ad6109b93660046150c1565b612717565b3480156109ca57600080fd5b506104ad6109d9366004614cef565b612814565b3480156109ea57600080fd5b506104ad6109f936600461504d565b612880565b348015610a0a57600080fd5b506104ad610a19366004614fce565b612a3a565b348015610a2a57600080fd5b506104ad610a3936600461504d565b612adc565b348015610a4a57600080fd5b506104ad610a593660046150f6565b612c96565b348015610a6a57600080fd5b5061056760205481565b348015610a8057600080fd5b50610567601e5481565b348015610a9657600080fd5b506104e4610aa5366004614cef565b612d1e565b348015610ab657600080fd5b50610567610ac5366004614eee565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b348015610af957600080fd5b50610567600c5481565b348015610b0f57600080fd5b506104ad610b1e366004614cef565b612d8a565b348015610b2f57600080fd5b506104ad610b3e366004614cef565b612df6565b348015610b4f57600080fd5b506104ad610b5e36600461504d565b612e62565b348015610b6f57600080fd5b506104ad610b7e366004614fce565b61301c565b348015610b8f57600080fd5b50610567610b9e366004614eee565b6130bc565b6104ad610bb1366004614cef565b6130ef565b6104ad610bc4366004614f0b565b613375565b348015610bd557600080fd5b50600754610567565b348015610bea57600080fd5b506104ad610bf9366004614cef565b613686565b348015610c0a57600080fd5b50610478610c19366004615162565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610c6057600080fd5b506104ad610c6f366004614fce565b6136f2565b348015610c8057600080fd5b506104ad610c8f366004614fce565b61378a565b348015610ca057600080fd5b506104ad610caf366004614eee565b61382d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610d0a5750610d0a82613926565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d7c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b601855565b60055473ffffffffffffffffffffffffffffffffffffffff163314610de85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b8051610dfb90600b906020840190614c14565b5050565b606060008054610e0e90615190565b80601f0160208091040260200160405190810160405280929190818152602001828054610e3a90615190565b8015610e875780601f10610e5c57610100808354040283529160200191610e87565b820191906000526020600020905b815481529060010190602001808311610e6a57829003601f168201915b5050505050905090565b6000610e9c82613a09565b610f0e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610d73565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610f4282611f83565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fe65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d73565b3373ffffffffffffffffffffffffffffffffffffffff8216148061100f575061100f8133610c19565b6110815760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610d73565b61108b8383613a6d565b505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600860205260409020546111285760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610d73565b6000600754476111389190615213565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020908152604080832054600654600890935290832054939450919261117c908561522b565b6111869190615297565b61119091906152ab565b9050806112055760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610d73565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054611236908290615213565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461126a908290615213565b6007556112778382613b0d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146113325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601c55565b60055473ffffffffffffffffffffffffffffffffffffffff16331461139e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601055565b60006113ae60025490565b600d54909150640100000000900460ff1615806113e95750336113d18484611d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b6114355760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610d73565b600d54610100900460ff1661148c5760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610d73565b600084116114dc5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b6018548411156114eb57600080fd5b600c546114f88583615213565b11156115465760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60135484601f546115579190615213565b11156115a55760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b83600f546115b3919061522b565b3410156116025760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b8361160c33612521565b101561165a5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b32331461166657600080fd5b60005b848110156116a4576116943361167f8385615213565b60405180602001604052806000815250613c33565b61169d816152c2565b9050611669565b5083601f60008282546116b79190615213565b909155506116c790503385613cbc565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601a55565b6117433382613cfa565b6117b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610d73565b61108b838383613e36565b60006117cb836120be565b82106118195760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610d73565b6000805b600254811015611893576002818154811061183a5761183a6152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156118835783821415611877579150610d0a9050565b611880826152c2565b91505b61188c816152c2565b905061181d565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610d73565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b604051600090339047908381818185875af1925050503d8060008114611985576040519150601f19603f3d011682016040523d82523d6000602084013e61198a565b606091505b505090508061199857600080fd5b50565b60006119a660025490565b600d549091506601000000000000900460ff1615806119e35750336119cb8484611d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b611a2f5760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610d73565b600d546301000000900460ff16611a885760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610d73565b60008411611ad85760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b601c54841115611ae757600080fd5b600c54611af48583615213565b1115611b425760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60155484602154611b539190615213565b1115611ba15760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b83601154611baf919061522b565b341015611bfe5760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b83611c08336123f4565b1015611c565760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b323314611c6257600080fd5b60005b84811015611c8b57611c7b3361167f8385615213565b611c84816152c2565b9050611c65565b508360216000828254611c9e9190615213565b909155506116c790503385614005565b61108b83838360405180602001604052806000815250612c96565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260246020526040812054601754610d0a91906152ab565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d635760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b6000611da9838361403a565b9392505050565b6000611dbb60025490565b8210611e095760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610d73565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff163314611e745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600f55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f7e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600e55565b60008060028381548110611f9957611f996152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610d0a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610d73565b600b805461203d90615190565b80601f016020809104026020016040519081016040528092919081815260200182805461206990615190565b80156120b65780601f1061208b576101008083540402835291602001916120b6565b820191906000526020600020905b81548152906001019060200180831161209957829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff82166121495760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610d73565b600254600090815b818110156121b4576002818154811061216c5761216c6152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156121a4576121a1836152c2565b92505b6121ad816152c2565b9050612151565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b61222e6000614052565b565b60055473ffffffffffffffffffffffffffffffffffffffff1633146122975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b60006122a260025490565b9050600083116122f45760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c546123018483615213565b111561234f5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60125483601e546123609190615213565b11156123ae5760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b838110156123d7576123c78361167f8385615213565b6123d0816152c2565b90506123b1565b5082601e60008282546123ea9190615213565b9091555050505050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602a6020526040812054601d54610d0a91906152ab565b6060612432826120be565b6000106124815760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610d73565b600061248c836120be565b905060008167ffffffffffffffff8111156124a9576124a9614d08565b6040519080825280602002602001820160405280156124d2578160200160208202803683370190505b50905060005b82811015612519576124ea85826117c0565b8282815181106124fc576124fc6152fb565b602090810291909101015280612511816152c2565b9150506124d8565b509392505050565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260266020526040812054601954610d0a91906152ab565b6000600a8281548110612569576125696152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601655565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601755565b606060018054610e0e90615190565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff821633141561277d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d73565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461287b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146128e75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b60006128f260025490565b9050600083116129445760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c546129518483615213565b111561299f5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60135483601f546129b09190615213565b11156129fe5760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b83811015612a2757612a178361167f8385615213565b612a20816152c2565b9050612a01565b5082601f60008282546123ea9190615213565b60055473ffffffffffffffffffffffffffffffffffffffff163314612aa15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d805491151565010000000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314612b435760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b6000612b4e60025490565b905060008311612ba05760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c54612bad8483615213565b1115612bfb5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60145483602054612c0c9190615213565b1115612c5a5760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b83811015612c8357612c738361167f8385615213565b612c7c816152c2565b9050612c5d565b5082602060008282546123ea9190615213565b612ca03383613cfa565b612d125760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610d73565b6116c7848484846140c9565b6060600c54821115612d2f57600080fd5b6000612d39614152565b90506000815111612d595760405180602001604052806000815250611da9565b80612d6384614161565b604051602001612d7492919061532a565b6040516020818303038152906040529392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612df15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601d55565b60055473ffffffffffffffffffffffffffffffffffffffff163314612e5d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601955565b60055473ffffffffffffffffffffffffffffffffffffffff163314612ec95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b6000612ed460025490565b905060008311612f265760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c54612f338483615213565b1115612f815760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60155483602154612f929190615213565b1115612fe05760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b60005b8381101561300957612ff98361167f8385615213565b613002816152c2565b9050612fe3565b5082602160008282546123ea9190615213565b60055473ffffffffffffffffffffffffffffffffffffffff1633146130835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260286020526040812054601b54610d0a91906152ab565b60006130fa60025490565b600d5490915060ff1661314f5760405162461bcd60e51b815260206004820152601a60248201527f47656e657369732073616c65206973206e6f74206163746976650000000000006044820152606401610d73565b6000821161319f5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b600c546131ac8383615213565b11156131fa5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b60165482111561320957600080fd5b60125482601e5461321a9190615213565b11156132685760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b81600e54613276919061522b565b3410156132c55760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b816132cf33611cc9565b101561331d5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b32331461332957600080fd5b60005b82811015613352576133423361167f8385615213565b61334b816152c2565b905061332c565b5081601e60008282546133659190615213565b90915550610dfb90503383614293565b600061338060025490565b600d5490915065010000000000900460ff1615806133bc5750336133a48484611d9d565b73ffffffffffffffffffffffffffffffffffffffff16145b6134085760405162461bcd60e51b815260206004820152601160248201527f5369676e617475726520496e76616c69640000000000000000000000000000006044820152606401610d73565b600d5462010000900460ff166134605760405162461bcd60e51b815260206004820152601960248201527f5075626c69632073616c65206973206e6f7420616374697665000000000000006044820152606401610d73565b600084116134b05760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610d73565b601a548411156134bf57600080fd5b600c546134cc8583615213565b111561351a5760405162461bcd60e51b815260206004820152600960248201527f4d696e74206c65737300000000000000000000000000000000000000000000006044820152606401610d73565b6014548460205461352b9190615213565b11156135795760405162461bcd60e51b815260206004820152601660248201527f5468697320706861736520697320736f6c64206f7574000000000000000000006044820152606401610d73565b83601054613587919061522b565b3410156135d65760405162461bcd60e51b815260206004820152601260248201527f45544820696e7075742069732077726f6e6700000000000000000000000000006044820152606401610d73565b836135e0336130bc565b101561362e5760405162461bcd60e51b815260206004820152601360248201527f596f75206d696e74656420746f6f206d616e79000000000000000000000000006044820152606401610d73565b32331461363a57600080fd5b60005b84811015613663576136533361167f8385615213565b61365c816152c2565b905061363d565b5083602060008282546136769190615213565b909155506116c7905033856142c8565b60055473ffffffffffffffffffffffffffffffffffffffff1633146136ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b601b55565b60055473ffffffffffffffffffffffffffffffffffffffff1633146137595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146137f15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b600d80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146138945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d73565b73ffffffffffffffffffffffffffffffffffffffff811661391d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d73565b61199881614052565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806139b957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610d0a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610d0a565b60025460009082108015610d0a5750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110613a4357613a436152fb565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190613ac782611f83565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015613b5d5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d73565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114613bb7576040519150601f19603f3d011682016040523d82523d6000602084013e613bbc565b606091505b505090508061108b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d73565b613c3d83836142fd565b613c4a6000848484614457565b61108b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d73565b73ffffffffffffffffffffffffffffffffffffffff821660009081526026602052604081208054839290613cf1908490615213565b90915550505050565b6000613d0582613a09565b613d775760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610d73565b6000613d8283611f83565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613df157508373ffffffffffffffffffffffffffffffffffffffff16613dd984610e91565b73ffffffffffffffffffffffffffffffffffffffff16145b80613e2e575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613e5682611f83565b73ffffffffffffffffffffffffffffffffffffffff1614613edf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610d73565b73ffffffffffffffffffffffffffffffffffffffff8216613f675760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d73565b613f72600082613a6d565b8160028281548110613f8657613f866152fb565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152602a602052604081208054839290613cf1908490615213565b6000806140468461462d565b9050613e2e8184614690565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6140d4848484613e36565b6140e084848484614457565b6116c75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d73565b6060600b8054610e0e90615190565b6060816141a157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156141cb57806141b5816152c2565b91506141c49050600a83615297565b91506141a5565b60008167ffffffffffffffff8111156141e6576141e6614d08565b6040519080825280601f01601f191660200182016040528015614210576020820181803683370190505b5090505b8415613e2e576142256001836152ab565b9150614232600a86615359565b61423d906030615213565b60f81b818381518110614252576142526152fb565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061428c600a86615297565b9450614214565b73ffffffffffffffffffffffffffffffffffffffff821660009081526024602052604081208054839290613cf1908490615213565b73ffffffffffffffffffffffffffffffffffffffff821660009081526028602052604081208054839290613cf1908490615213565b73ffffffffffffffffffffffffffffffffffffffff82166143605760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d73565b61436981613a09565b156143b65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d73565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614622576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a02906144ce90339089908890889060040161536d565b6020604051808303816000875af1925050508015614527575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252614524918101906153b6565b60015b6145d7573d808015614555576040519150601f19603f3d011682016040523d82523d6000602084013e61455a565b606091505b5080516145cf5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d73565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613e2e565b506001949350505050565b6000610d0a7f28bcf37b3cf2bc5fb85e4153569e33942b67dedd3a52f5007e880261d298bb9c8380519060200120604051602001614675929190918252602082015260400190565b604051602081830303815290604052805190602001206146ac565b600080600061469f8585614715565b9150915061251981614785565b6000610d0a6146b9614976565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60008082516041141561474c5760208301516040840151606085015160001a61474087828585614aaa565b9450945050505061477e565b825160401415614776576020830151604084015161476b868383614bc2565b93509350505061477e565b506000905060025b9250929050565b6000816004811115614799576147996153d3565b14156147a25750565b60018160048111156147b6576147b66153d3565b14156148045760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610d73565b6002816004811115614818576148186153d3565b14156148665760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610d73565b600381600481111561487a5761487a6153d3565b14156148ee5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d73565b6004816004811115614902576149026153d3565b14156119985760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610d73565b60003073ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000092d89652181901d3292ba4d8ff423ea18373ce7c161480156149dc57507f000000000000000000000000000000000000000000000000000000000000000146145b15614a0657507fd445f50af43b2fe4147357f80ab6ac59bf44574994672c780e845530e9bf8e7c90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527f917ff9ed0a39f56c5b551a74d8cc03bc8c0b297ba23bab04cfd0d6fd1eacbefe828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115614ae15750600090506003614bb9565b8460ff16601b14158015614af957508460ff16601c14155b15614b0a5750600090506004614bb9565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015614b5e573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116614bb257600060019250925050614bb9565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831681614bf860ff86901c601b615213565b9050614c0687828885614aaa565b935093505050935093915050565b828054614c2090615190565b90600052602060002090601f016020900481019282614c425760008555614c88565b82601f10614c5b57805160ff1916838001178555614c88565b82800160010185558215614c88579182015b82811115614c88578251825591602001919060010190614c6d565b50611e099291505b80821115611e095760008155600101614c90565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461199857600080fd5b600060208284031215614ce457600080fd5b8135611da981614ca4565b600060208284031215614d0157600080fd5b5035919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112614d4857600080fd5b813567ffffffffffffffff80821115614d6357614d63614d08565b604051601f83017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614da957614da9614d08565b81604052838152866020858801011115614dc257600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215614df457600080fd5b813567ffffffffffffffff811115614e0b57600080fd5b613e2e84828501614d37565b60005b83811015614e32578181015183820152602001614e1a565b838111156116c75750506000910152565b60008151808452614e5b816020860160208601614e17565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611da96020830184614e43565b73ffffffffffffffffffffffffffffffffffffffff8116811461199857600080fd5b60008060408385031215614ed557600080fd5b8235614ee081614ea0565b946020939093013593505050565b600060208284031215614f0057600080fd5b8135611da981614ea0565b600080600060608486031215614f2057600080fd5b83359250602084013567ffffffffffffffff80821115614f3f57600080fd5b614f4b87838801614d37565b93506040860135915080821115614f6157600080fd5b50614f6e86828701614d37565b9150509250925092565b600080600060608486031215614f8d57600080fd5b8335614f9881614ea0565b92506020840135614fa881614ea0565b929592945050506040919091013590565b80358015158114614fc957600080fd5b919050565b600060208284031215614fe057600080fd5b611da982614fb9565b60008060408385031215614ffc57600080fd5b823567ffffffffffffffff8082111561501457600080fd5b61502086838701614d37565b9350602085013591508082111561503657600080fd5b5061504385828601614d37565b9150509250929050565b6000806040838503121561506057600080fd5b82359150602083013561507281614ea0565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b818110156150b557835183529284019291840191600101615099565b50909695505050505050565b600080604083850312156150d457600080fd5b82356150df81614ea0565b91506150ed60208401614fb9565b90509250929050565b6000806000806080858703121561510c57600080fd5b843561511781614ea0565b9350602085013561512781614ea0565b925060408501359150606085013567ffffffffffffffff81111561514a57600080fd5b61515687828801614d37565b91505092959194509250565b6000806040838503121561517557600080fd5b823561518081614ea0565b9150602083013561507281614ea0565b600181811c908216806151a457607f821691505b602082108114156151de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008219821115615226576152266151e4565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615263576152636151e4565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826152a6576152a6615268565b500490565b6000828210156152bd576152bd6151e4565b500390565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156152f4576152f46151e4565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000835161533c818460208801614e17565b835190830190615350818360208801614e17565b01949350505050565b60008261536857615368615268565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526153ac6080830184614e43565b9695505050505050565b6000602082840312156153c857600080fd5b8151611da981614ca4565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fdfea26469706673582212206f492fc62dd54a08a8e46624168117457b3d50f1389bc6a94599ec28c37d776864736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000013467269656e6473696e48696768506c6163657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446694850000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d595450635644585846614139526a5a536d785764566d71356455575943394375696743684366716f356578632f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): FriendsinHighPlaces
Arg [1] : _symbol (string): FiHP
Arg [2] : _initBaseURI (string): ipfs://QmYTPcVDXXFaA9RjZSmxWdVmq5dUWYC9CuigChCfqo5exc/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 467269656e6473696e48696768506c6163657300000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4669485000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d595450635644585846614139526a5a536d785764566d71
Arg [9] : 356455575943394375696743684366716f356578632f00000000000000000000


Deployed Bytecode Sourcemap

175:12547:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:15;682:10:1;2627:40:15;;;218:42:18;206:55;;;188:74;;2657:9:15;293:2:18;278:18;;271:34;161:18;2627:40:15;;;;;;;175:12547:7;;;;;184:224:6;;;;;;;;;;-1:-1:-1;184:224:6;;;;;:::i;:::-;;:::i;:::-;;;913:14:18;;906:22;888:41;;876:2;861:18;184:224:6;;;;;;;;11944:116:7;;;;;;;;;;-1:-1:-1;11944:116:7;;;;;:::i;:::-;;:::i;:::-;;11462:89;;;;;;;;;;-1:-1:-1;11462:89:7;;;;;:::i;:::-;;:::i;1672:100:5:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:5;;;;;:::i;:::-;;:::i;:::-;;;3410:42:18;3398:55;;;3380:74;;3368:2;3353:18;2305:221:5;3234:226:18;1888:411:5;;;;;;;;;;-1:-1:-1;1888:411:5;;;;;:::i;:::-;;:::i;1342:110:6:-;;;;;;;;;;-1:-1:-1;1430:7:6;:14;1342:110;;;4090:25:18;;;4078:2;4063:18;1342:110:6;3944:177:18;1698:26:7;;;;;;;;;;;;;;;;3791:600:15;;;;;;;;;;-1:-1:-1;3791:600:15;;;;;:::i;:::-;;:::i;12448:116:7:-;;;;;;;;;;-1:-1:-1;12448:116:7;;;;;:::i;:::-;;:::i;10603:91::-;;;;;;;;;;-1:-1:-1;10603:91:7;;;;;:::i;:::-;;:::i;3493:979::-;;;;;;:::i;:::-;;:::i;12196:116::-;;;;;;;;;;-1:-1:-1;12196:116:7;;;;;:::i;:::-;;:::i;3003:339:5:-;;;;;;;;;;-1:-1:-1;3003:339:5;;;;;:::i;:::-;;:::i;414:499:6:-;;;;;;;;;;-1:-1:-1;414:499:6;;;;;:::i;:::-;;:::i;2752:89:15:-;;;;;;;;;;-1:-1:-1;2822:12:15;;2752:89;;12570:149:7;;;:::i;5457:976::-;;;;;;:::i;:::-;;:::i;3348:185:5:-;;;;;;;;;;-1:-1:-1;3348:185:5;;;;;:::i;:::-;;:::i;8388:152:7:-;;;;;;;;;;-1:-1:-1;8388:152:7;;;;;:::i;:::-;;:::i;11161:92::-;;;;;;;;;;-1:-1:-1;11161:92:7;;;;;:::i;:::-;;:::i;9434:138::-;;;;;;;;;;-1:-1:-1;9434:138:7;;;;;:::i;:::-;;:::i;1458:191:6:-;;;;;;;;;;-1:-1:-1;1458:191:6;;;;;:::i;:::-;;:::i;10893:80:7:-;;;;;;;;;;-1:-1:-1;10893:80:7;;;;;:::i;:::-;;:::i;10510:91::-;;;;;;;;;;-1:-1:-1;10510:91:7;;;;;:::i;:::-;;:::i;10415:93::-;;;;;;;;;;-1:-1:-1;10415:93:7;;;;;:::i;:::-;;:::i;1427:239:5:-;;;;;;;;;;-1:-1:-1;1427:239:5;;;;;:::i;:::-;;:::i;279:21:7:-;;;;;;;;;;;;;:::i;1007:414:5:-;;;;;;;;;;-1:-1:-1;1007:414:5;;;;;:::i;:::-;;:::i;1648:94:14:-;;;;;;;;;;;;;:::i;6457:452:7:-;;;;;;;;;;-1:-1:-1;6457:452:7;;;;;:::i;:::-;;:::i;9267:161::-;;;;;;;;;;-1:-1:-1;9267:161:7;;;;;:::i;:::-;;:::i;919:417:6:-;;;;;;;;;;-1:-1:-1;919:417:6;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8675:161:7:-;;;;;;;;;;-1:-1:-1;8675:161:7;;;;;:::i;:::-;;:::i;3499:98:15:-;;;;;;;;;;-1:-1:-1;3499:98:15;;;;;:::i;:::-;;:::i;997:87:14:-;;;;;;;;;;-1:-1:-1;1070:6:14;;;;997:87;;1640:26:7;;;;;;;;;;;;;;;;11698:110;;;;;;;;;;-1:-1:-1;11698:110:7;;;;;:::i;:::-;;:::i;11570:126::-;;;;;;;;;;-1:-1:-1;11570:126:7;;;;;:::i;:::-;;:::i;1778:104:5:-;;;;;;;;;;;;;:::i;3306:107:15:-;;;;;;;;;;-1:-1:-1;3306:107:15;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;10975:80:7;;;;;;;;;;-1:-1:-1;10975:80:7;;;;;:::i;:::-;;:::i;2532:295:5:-;;;;;;;;;;-1:-1:-1;2532:295:5;;;;;:::i;:::-;;:::i;10696:91:7:-;;;;;;;;;;-1:-1:-1;10696:91:7;;;;;:::i;:::-;;:::i;6911:448::-;;;;;;;;;;-1:-1:-1;6911:448:7;;;;;:::i;:::-;;:::i;11255:92::-;;;;;;;;;;-1:-1:-1;11255:92:7;;;;;:::i;:::-;;:::i;7361:448::-;;;;;;;;;;-1:-1:-1;7361:448:7;;;;;:::i;:::-;;:::i;3539:328:5:-;;;;;;;;;;-1:-1:-1;3539:328:5;;;;;:::i;:::-;;:::i;1669:26:7:-;;;;;;;;;;;;;;;;1610:27;;;;;;;;;;;;;;;;10111:282;;;;;;;;;;-1:-1:-1;10111:282:7;;;;;:::i;:::-;;:::i;3109:103:15:-;;;;;;;;;;-1:-1:-1;3109:103:15;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;444:31:7;;;;;;;;;;;;;;;;12314:132;;;;;;;;;;-1:-1:-1;12314:132:7;;;;;:::i;:::-;;:::i;11810:::-;;;;;;;;;;-1:-1:-1;11810:132:7;;;;;:::i;:::-;;:::i;7811:448::-;;;;;;;;;;-1:-1:-1;7811:448:7;;;;;:::i;:::-;;:::i;11057:80::-;;;;;;;;;;-1:-1:-1;11057:80:7;;;;;:::i;:::-;;:::i;8971:161::-;;;;;;;;;;-1:-1:-1;8971:161:7;;;;;:::i;:::-;;:::i;2660:829::-;;;;;;:::i;:::-;;:::i;4476:976::-;;;;;;:::i;:::-;;:::i;2930:93:15:-;;;;;;;;;;-1:-1:-1;3002:14:15;;2930:93;;12062:132:7;;;;;;;;;;-1:-1:-1;12062:132:7;;;;;:::i;:::-;;:::i;2833:164:5:-;;;;;;;;;;-1:-1:-1;2833:164:5;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;10809:82:7;;;;;;;;;;-1:-1:-1;10809:82:7;;;;;:::i;:::-;;:::i;11349:92::-;;;;;;;;;;-1:-1:-1;11349:92:7;;;;;:::i;:::-;;:::i;1897:192:14:-;;;;;;;;;;-1:-1:-1;1897:192:14;;;;;:::i;:::-;;:::i;184:224:6:-;286:4;310:50;;;325:35;310:50;;:90;;;364:36;388:11;364:23;:36::i;:::-;303:97;184:224;-1:-1:-1;;184:224:6:o;11944:116:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;;;;;;;;;12018:22:7::1;:38:::0;11944:116::o;11462:89::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11526:21:7;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;11462:89:::0;:::o;1672:100:5:-;1726:13;1759:5;1752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:100;:::o;2305:221::-;2381:7;2409:16;2417:7;2409;:16::i;:::-;2401:73;;;;-1:-1:-1;;;2401:73:5;;9957:2:18;2401:73:5;;;9939:21:18;9996:2;9976:18;;;9969:30;10035:34;10015:18;;;10008:62;10106:14;10086:18;;;10079:42;10138:19;;2401:73:5;9755:408:18;2401:73:5;-1:-1:-1;2494:24:5;;;;:15;:24;;;;;;;;;2305:221::o;1888:411::-;1969:13;1985:23;2000:7;1985:14;:23::i;:::-;1969:39;;2033:5;2027:11;;:2;:11;;;;2019:57;;;;-1:-1:-1;;;2019:57:5;;10370:2:18;2019:57:5;;;10352:21:18;10409:2;10389:18;;;10382:30;10448:34;10428:18;;;10421:62;10519:3;10499:18;;;10492:31;10540:19;;2019:57:5;10168:397:18;2019:57:5;682:10:1;2111:21:5;;;;;:62;;-1:-1:-1;2136:37:5;2153:5;682:10:1;2833:164:5;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:5;;10772:2:18;2089:168:5;;;10754:21:18;10811:2;10791:18;;;10784:30;10850:34;10830:18;;;10823:62;10921:26;10901:18;;;10894:54;10965:19;;2089:168:5;10570:420:18;2089:168:5;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;3791:600:15:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:15;;11197:2:18;3858:71:15;;;11179:21:18;11236:2;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;11346:8;11326:18;;;11319:36;11372:19;;3858:71:15;10995:402:18;3858:71:15;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:15;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:15;4111:68;;;;-1:-1:-1;;;4111:68:15;;12603:2:18;4111:68:15;;;12585:21:18;12642:2;12622:18;;;12615:30;12681:34;12661:18;;;12654:62;12752:13;12732:18;;;12725:41;12783:19;;4111:68:15;12401:407:18;4111:68:15;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:18;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:15;;161:18:18;4351:33:15;;;;;;;3848:543;;3791:600;:::o;12448:116:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;12522:22:7::1;:38:::0;12448:116::o;10603:91::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;10667:11:7::1;:23:::0;10603:91::o;3493:979::-;3600:9;3612:13;1430:7:6;:14;;1342:110;3612:13:7;3644:15;;3600:25;;-1:-1:-1;3644:15:7;;;;;3643:16;;:56;;-1:-1:-1;3689:10:7;3663:22;3669:4;3675:9;3663:5;:22::i;:::-;:36;;;3643:56;3635:86;;;;-1:-1:-1;;;3635:86:7;;13325:2:18;3635:86:7;;;13307:21:18;13364:2;13344:18;;;13337:30;13403:19;13383:18;;;13376:47;13440:18;;3635:86:7;13123:341:18;3635:86:7;3760:12;;;;;;;3752:49;;;;-1:-1:-1;;;3752:49:7;;13671:2:18;3752:49:7;;;13653:21:18;13710:2;13690:18;;;13683:30;13749:27;13729:18;;;13722:55;13794:18;;3752:49:7;13469:349:18;3752:49:7;3834:1;3819:12;:16;3811:46;;;;-1:-1:-1;;;3811:46:7;;14025:2:18;3811:46:7;;;14007:21:18;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;3811:46:7;13823:340:18;3811:46:7;3888:22;;3872:12;:38;;3864:47;;;;;;3947:9;;3927:16;3931:12;3927:1;:16;:::i;:::-;:29;;3918:52;;;;-1:-1:-1;;;3918:52:7;;14370:2:18;3918:52:7;;;14352:21:18;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;3918:52:7;14168:332:18;3918:52:7;4012:12;;3996;3982:11;;:26;;;;:::i;:::-;:42;;3974:76;;;;-1:-1:-1;;;3974:76:7;;14707:2:18;3974:76:7;;;14689:21:18;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;3974:76:7;14505:346:18;3974:76:7;4092:12;4078:11;;:26;;;;:::i;:::-;4065:9;:39;;4057:70;;;;-1:-1:-1;;;4057:70:7;;15058:2:18;4057:70:7;;;15040:21:18;15097:2;15077:18;;;15070:30;15136:20;15116:18;;;15109:48;15174:18;;4057:70:7;14856:342:18;4057:70:7;4181:12;4139:38;4166:10;4139:26;:38::i;:::-;:54;;4131:85;;;;-1:-1:-1;;;4131:85:7;;15405:2:18;4131:85:7;;;15387:21:18;15444:2;15424:18;;;15417:30;15483:21;15463:18;;;15456:49;15522:18;;4131:85:7;15203:343:18;4131:85:7;4228:9;4241:10;4228:23;4220:32;;;;;;4290:9;4285:95;4309:12;4305:1;:16;4285:95;;;4337:32;4347:10;4359:5;4363:1;4359;:5;:::i;:::-;4337:32;;;;;;;;;;;;:9;:32::i;:::-;4323:3;;;:::i;:::-;;;4285:95;;;;4398:12;4383:11;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;4414:51:7;;-1:-1:-1;4440:10:7;4452:12;4414:25;:51::i;:::-;3594:878;3493:979;;;:::o;12196:116::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;12270:22:7::1;:38:::0;12196:116::o;3003:339:5:-;3198:41;682:10:1;3231:7:5;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:5;;15953:2:18;3190:103:5;;;15935:21:18;15992:2;15972:18;;;15965:30;16031:34;16011:18;;;16004:62;16102:19;16082:18;;;16075:47;16139:19;;3190:103:5;15751:413:18;3190:103:5;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;414:499:6:-;503:15;547:23;564:5;547:16;:23::i;:::-;539:5;:31;531:66;;;;-1:-1:-1;;;531:66:6;;16371:2:18;531:66:6;;;16353:21:18;16410:2;16390:18;;;16383:30;16449:24;16429:18;;;16422:52;16491:18;;531:66:6;16169:346:18;531:66:6;608:10;634:6;629:226;646:7;:14;642:18;;629:226;;;695:7;703:1;695:10;;;;;;;;:::i;:::-;;;;;;;;;;;;686:19;;;695:10;;686:19;682:162;;;739:5;730;:14;726:102;;;775:1;-1:-1:-1;768:8:6;;-1:-1:-1;768:8:6;726:102;821:7;;;:::i;:::-;;;726:102;662:3;;;:::i;:::-;;;629:226;;;-1:-1:-1;865:40:6;;-1:-1:-1;;;865:40:6;;16371:2:18;865:40:6;;;16353:21:18;16410:2;16390:18;;;16383:30;16449:24;16429:18;;;16422:52;16491:18;;865:40:6;16169:346:18;12570:149:7;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;12637:58:7::1;::::0;12619:12:::1;::::0;12645:10:::1;::::0;12669:21:::1;::::0;12619:12;12637:58;12619:12;12637:58;12669:21;12645:10;12637:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12618:77;;;12707:7;12699:16;;;::::0;::::1;;12615:104;12570:149::o:0;5457:976::-;5564:9;5576:13;1430:7:6;:14;;1342:110;5576:13:7;5608:15;;5564:25;;-1:-1:-1;5608:15:7;;;;;5607:16;;:56;;-1:-1:-1;5653:10:7;5627:22;5633:4;5639:9;5627:5;:22::i;:::-;:36;;;5607:56;5599:86;;;;-1:-1:-1;;;5599:86:7;;13325:2:18;5599:86:7;;;13307:21:18;13364:2;13344:18;;;13337:30;13403:19;13383:18;;;13376:47;13440:18;;5599:86:7;13123:341:18;5599:86:7;5724:12;;;;;;;5716:49;;;;-1:-1:-1;;;5716:49:7;;13671:2:18;5716:49:7;;;13653:21:18;13710:2;13690:18;;;13683:30;13749:27;13729:18;;;13722:55;13794:18;;5716:49:7;13469:349:18;5716:49:7;5798:1;5783:12;:16;5775:46;;;;-1:-1:-1;;;5775:46:7;;14025:2:18;5775:46:7;;;14007:21:18;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;5775:46:7;13823:340:18;5775:46:7;5852:22;;5836:12;:38;;5828:47;;;;;;5908:9;;5888:16;5892:12;5888:1;:16;:::i;:::-;:29;;5879:52;;;;-1:-1:-1;;;5879:52:7;;14370:2:18;5879:52:7;;;14352:21:18;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;5879:52:7;14168:332:18;5879:52:7;5973:12;;5957;5943:11;;:26;;;;:::i;:::-;:42;;5935:76;;;;-1:-1:-1;;;5935:76:7;;14707:2:18;5935:76:7;;;14689:21:18;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;5935:76:7;14505:346:18;5935:76:7;6053:12;6039:11;;:26;;;;:::i;:::-;6026:9;:39;;6018:70;;;;-1:-1:-1;;;6018:70:7;;15058:2:18;6018:70:7;;;15040:21:18;15097:2;15077:18;;;15070:30;15136:20;15116:18;;;15109:48;15174:18;;6018:70:7;14856:342:18;6018:70:7;6142:12;6100:38;6127:10;6100:26;:38::i;:::-;:54;;6092:85;;;;-1:-1:-1;;;6092:85:7;;15405:2:18;6092:85:7;;;15387:21:18;15444:2;15424:18;;;15417:30;15483:21;15463:18;;;15456:49;15522:18;;6092:85:7;15203:343:18;6092:85:7;6189:9;6202:10;6189:23;6181:32;;;;;;6251:9;6246:95;6270:12;6266:1;:16;6246:95;;;6298:32;6308:10;6320:5;6324:1;6320;:5;:::i;6298:32::-;6284:3;;;:::i;:::-;;;6246:95;;;;6359:12;6344:11;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;6375:51:7;;-1:-1:-1;6401:10:7;6413:12;6375:25;:51::i;3348:185:5:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;8388:152:7:-;8506:27;;;8458:7;8506:27;;;:19;:27;;;;;;8480:23;;:53;;8506:27;8480:53;:::i;11161:92::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11224:15:7::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;11161:92::o;9434:138::-;9514:7;9540:25;9549:4;9555:9;9540:7;:25::i;:::-;9533:32;9434:138;-1:-1:-1;;;9434:138:7:o;1458:191:6:-;1533:7;1569:21;1430:7;:14;;1342:110;1569:21;1561:5;:29;1553:65;;;;-1:-1:-1;;;1553:65:6;;17121:2:18;1553:65:6;;;17103:21:18;17160:2;17140:18;;;17133:30;17199:25;17179:18;;;17172:53;17242:18;;1553:65:6;16919:347:18;1553:65:6;-1:-1:-1;1636:5:6;1458:191::o;10893:80:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;10947:12:7::1;:22:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;10893:80::o;10510:91::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;10574:11:7::1;:23:::0;10510:91::o;10415:93::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;10480:12:7::1;:24:::0;10415:93::o;1427:239:5:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:5;1562:73;;;;-1:-1:-1;;;1562:73:5;;17473:2:18;1562:73:5;;;17455:21:18;17512:2;17492:18;;;17485:30;17551:34;17531:18;;;17524:62;17622:11;17602:18;;;17595:39;17651:19;;1562:73:5;17271:405:18;279:21:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:5:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:5;;17883:2:18;1099:74:5;;;17865:21:18;17922:2;17902:18;;;17895:30;17961:34;17941:18;;;17934:62;18032:12;18012:18;;;18005:40;18062:19;;1099:74:5;17681:406:18;1099:74:5;1223:7;:14;1184:10;;;1248:119;1269:6;1265:1;:10;1248:119;;;1308:7;1316:1;1308:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1299:19;;;1308:10;;1299:19;1295:61;;;1335:7;;;:::i;:::-;;;1295:61;1277:3;;;:::i;:::-;;;1248:119;;;-1:-1:-1;1408:5:5;;1007:414;-1:-1:-1;;;1007:414:5:o;1648:94:14:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;6457:452:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;6540:9:7::1;6552:13;1430:7:6::0;:14;;1342:110;6552:13:7::1;6540:25;;6598:1;6583:12;:16;6575:46;;;::::0;-1:-1:-1;;;6575:46:7;;14025:2:18;6575:46:7::1;::::0;::::1;14007:21:18::0;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;6575:46:7::1;13823:340:18::0;6575:46:7::1;6656:9;::::0;6636:16:::1;6640:12:::0;6636:1;:16:::1;:::i;:::-;:29;;6628:51;;;::::0;-1:-1:-1;;;6628:51:7;;14370:2:18;6628:51:7::1;::::0;::::1;14352:21:18::0;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;6628:51:7::1;14168:332:18::0;6628:51:7::1;6722:13;;6706:12;6691;;:27;;;;:::i;:::-;:44;;6683:78;;;::::0;-1:-1:-1;;;6683:78:7;;14707:2:18;6683:78:7::1;::::0;::::1;14689:21:18::0;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;6683:78:7::1;14505:346:18::0;6683:78:7::1;6780:9;6775:94;6799:12;6795:1;:16;6775:94;;;6832:26;6842:4:::0;6848:5:::1;6852:1:::0;6848;:5:::1;:::i;6832:26::-;6813:3;::::0;::::1;:::i;:::-;;;6775:94;;;;6890:12;6874;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;6457:452:7:o;9267:161::-;9391:30;;;9340:7;9391:30;;;:22;:30;;;;;;9362:26;;:59;;9391:30;9362:59;:::i;919:417:6:-;978:16;1019:23;1036:5;1019:16;:23::i;:::-;1015:1;:27;1007:62;;;;-1:-1:-1;;;1007:62:6;;16371:2:18;1007:62:6;;;16353:21:18;16410:2;16390:18;;;16383:30;16449:24;16429:18;;;16422:52;16491:18;;1007:62:6;16169:346:18;1007:62:6;1080:18;1101:16;1111:5;1101:9;:16::i;:::-;1080:37;;1128:25;1170:10;1156:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1156:25:6;;1128:53;;1197:9;1192:111;1216:10;1212:1;:14;1192:111;;;1262:29;1282:5;1289:1;1262:19;:29::i;:::-;1248:8;1257:1;1248:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1228:3;;;;:::i;:::-;;;;1192:111;;;-1:-1:-1;1320:8:6;919:417;-1:-1:-1;;;919:417:6:o;8675:161:7:-;8799:30;;;8748:7;8799:30;;;:22;:30;;;;;;8770:26;;:59;;8799:30;8770:59;:::i;3499:98:15:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:15:o;11698:110:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11769:19:7::1;:35:::0;11698:110::o;11570:126::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11649:23:7::1;:43:::0;11570:126::o;1778:104:5:-;1834:13;1867:7;1860:14;;;;;:::i;10975:80:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11029:12:7::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10975:80::o;2532:295:5:-;2635:24;;;682:10:1;2635:24:5;;2627:62;;;;-1:-1:-1;;;2627:62:5;;18294:2:18;2627:62:5;;;18276:21:18;18333:2;18313:18;;;18306:30;18372:27;18352:18;;;18345:55;18417:18;;2627:62:5;18092:349:18;2627:62:5;682:10:1;2702:32:5;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:18;;;2702:42:5;;682:10:1;2771:48:5;;861:18:18;2771:48:5;;;;;;;2532:295;;:::o;10696:91:7:-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;10760:11:7::1;:23:::0;10696:91::o;6911:448::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;6993:9:7::1;7005:13;1430:7:6::0;:14;;1342:110;7005:13:7::1;6993:25;;7051:1;7036:12;:16;7028:46;;;::::0;-1:-1:-1;;;7028:46:7;;14025:2:18;7028:46:7::1;::::0;::::1;14007:21:18::0;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;7028:46:7::1;13823:340:18::0;7028:46:7::1;7109:9;::::0;7089:16:::1;7093:12:::0;7089:1;:16:::1;:::i;:::-;:29;;7081:51;;;::::0;-1:-1:-1;;;7081:51:7;;14370:2:18;7081:51:7::1;::::0;::::1;14352:21:18::0;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;7081:51:7::1;14168:332:18::0;7081:51:7::1;7174:12;;7158;7144:11;;:26;;;;:::i;:::-;:42;;7136:76;;;::::0;-1:-1:-1;;;7136:76:7;;14707:2:18;7136:76:7::1;::::0;::::1;14689:21:18::0;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;7136:76:7::1;14505:346:18::0;7136:76:7::1;7231:9;7226:94;7250:12;7246:1;:16;7226:94;;;7283:26;7293:4:::0;7299:5:::1;7303:1:::0;7299;:5:::1;:::i;7283:26::-;7264:3;::::0;::::1;:::i;:::-;;;7226:94;;;;7340:12;7325:11;;:27;;;;;;;:::i;11255:92::-:0;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11318:15:7::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;11255:92::o;7361:448::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;7443:9:7::1;7455:13;1430:7:6::0;:14;;1342:110;7455:13:7::1;7443:25;;7501:1;7486:12;:16;7478:46;;;::::0;-1:-1:-1;;;7478:46:7;;14025:2:18;7478:46:7::1;::::0;::::1;14007:21:18::0;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;7478:46:7::1;13823:340:18::0;7478:46:7::1;7559:9;::::0;7539:16:::1;7543:12:::0;7539:1;:16:::1;:::i;:::-;:29;;7531:51;;;::::0;-1:-1:-1;;;7531:51:7;;14370:2:18;7531:51:7::1;::::0;::::1;14352:21:18::0;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;7531:51:7::1;14168:332:18::0;7531:51:7::1;7624:12;;7608;7594:11;;:26;;;;:::i;:::-;:42;;7586:76;;;::::0;-1:-1:-1;;;7586:76:7;;14707:2:18;7586:76:7::1;::::0;::::1;14689:21:18::0;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;7586:76:7::1;14505:346:18::0;7586:76:7::1;7681:9;7676:94;7700:12;7696:1;:16;7676:94;;;7733:26;7743:4:::0;7749:5:::1;7753:1:::0;7749;:5:::1;:::i;7733:26::-;7714:3;::::0;::::1;:::i;:::-;;;7676:94;;;;7790:12;7775:11;;:27;;;;;;;:::i;3539:328:5:-:0;3714:41;682:10:1;3747:7:5;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:5;;15953:2:18;3706:103:5;;;15935:21:18;15992:2;15972:18;;;15965:30;16031:34;16011:18;;;16004:62;16102:19;16082:18;;;16075:47;16139:19;;3706:103:5;15751:413:18;3706:103:5;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;10111:282:7:-;10184:13;10222:9;;10211:7;:20;;10203:29;;;;;;10236:28;10267:10;:8;:10::i;:::-;10236:41;;10320:1;10295:14;10289:28;:32;:100;;;;;;;;;;;;;;;;;10348:14;10364:18;:7;:16;:18::i;:::-;10331:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10282:107;10111:282;-1:-1:-1;;;10111:282:7:o;12314:132::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;12396:26:7::1;:46:::0;12314:132::o;11810:::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11892:26:7::1;:46:::0;11810:132::o;7811:448::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;7893:9:7::1;7905:13;1430:7:6::0;:14;;1342:110;7905:13:7::1;7893:25;;7951:1;7936:12;:16;7928:46;;;::::0;-1:-1:-1;;;7928:46:7;;14025:2:18;7928:46:7::1;::::0;::::1;14007:21:18::0;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;7928:46:7::1;13823:340:18::0;7928:46:7::1;8009:9;::::0;7989:16:::1;7993:12:::0;7989:1;:16:::1;:::i;:::-;:29;;7981:51;;;::::0;-1:-1:-1;;;7981:51:7;;14370:2:18;7981:51:7::1;::::0;::::1;14352:21:18::0;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;7981:51:7::1;14168:332:18::0;7981:51:7::1;8074:12;;8058;8044:11;;:26;;;;:::i;:::-;:42;;8036:76;;;::::0;-1:-1:-1;;;8036:76:7;;14707:2:18;8036:76:7::1;::::0;::::1;14689:21:18::0;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;8036:76:7::1;14505:346:18::0;8036:76:7::1;8131:9;8126:94;8150:12;8146:1;:16;8126:94;;;8183:26;8193:4:::0;8199:5:::1;8203:1:::0;8199;:5:::1;:::i;8183:26::-;8164:3;::::0;::::1;:::i;:::-;;;8126:94;;;;8240:12;8225:11;;:27;;;;;;;:::i;11057:80::-:0;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11111:12:7::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;11057:80::o;8971:161::-;9095:30;;;9044:7;9095:30;;;:22;:30;;;;;;9066:26;;:59;;9095:30;9066:59;:::i;2660:829::-;2727:9;2739:13;1430:7:6;:14;;1342:110;2739:13:7;2770;;2727:25;;-1:-1:-1;2770:13:7;;2762:51;;;;-1:-1:-1;;;2762:51:7;;19123:2:18;2762:51:7;;;19105:21:18;19162:2;19142:18;;;19135:30;19201:28;19181:18;;;19174:56;19247:18;;2762:51:7;18921:350:18;2762:51:7;2846:1;2831:12;:16;2823:46;;;;-1:-1:-1;;;2823:46:7;;14025:2:18;2823:46:7;;;14007:21:18;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;2823:46:7;13823:340:18;2823:46:7;2904:9;;2884:16;2888:12;2884:1;:16;:::i;:::-;:29;;2876:51;;;;-1:-1:-1;;;2876:51:7;;14370:2:18;2876:51:7;;;14352:21:18;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;2876:51:7;14168:332:18;2876:51:7;2955:19;;2939:12;:35;;2931:44;;;;;;3018:13;;3002:12;2987;;:27;;;;:::i;:::-;:44;;2979:78;;;;-1:-1:-1;;;2979:78:7;;14707:2:18;2979:78:7;;;14689:21:18;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;2979:78:7;14505:346:18;2979:78:7;3100:12;3085;;:27;;;;:::i;:::-;3072:9;:40;;3064:71;;;;-1:-1:-1;;;3064:71:7;;15058:2:18;3064:71:7;;;15040:21:18;15097:2;15077:18;;;15070:30;15136:20;15116:18;;;15109:48;15174:18;;3064:71:7;14856:342:18;3064:71:7;3186:12;3147:35;3171:10;3147:23;:35::i;:::-;:51;;3139:82;;;;-1:-1:-1;;;3139:82:7;;15405:2:18;3139:82:7;;;15387:21:18;15444:2;15424:18;;;15417:30;15483:21;15463:18;;;15456:49;15522:18;;3139:82:7;15203:343:18;3139:82:7;3233:9;3246:10;3233:23;3225:32;;;;;;3300:9;3295:100;3319:12;3315:1;:16;3295:100;;;3352:32;3362:10;3374:5;3378:1;3374;:5;:::i;3352:32::-;3333:3;;;:::i;:::-;;;3295:100;;;;3416:12;3400;;:28;;;;;;;:::i;:::-;;;;-1:-1:-1;3434:48:7;;-1:-1:-1;3457:10:7;3469:12;3434:22;:48::i;4476:976::-;4583:9;4595:13;1430:7:6;:14;;1342:110;4595:13:7;4627:15;;4583:25;;-1:-1:-1;4627:15:7;;;;;4626:16;;:56;;-1:-1:-1;4672:10:7;4646:22;4652:4;4658:9;4646:5;:22::i;:::-;:36;;;4626:56;4618:86;;;;-1:-1:-1;;;4618:86:7;;13325:2:18;4618:86:7;;;13307:21:18;13364:2;13344:18;;;13337:30;13403:19;13383:18;;;13376:47;13440:18;;4618:86:7;13123:341:18;4618:86:7;4743:12;;;;;;;4735:49;;;;-1:-1:-1;;;4735:49:7;;13671:2:18;4735:49:7;;;13653:21:18;13710:2;13690:18;;;13683:30;13749:27;13729:18;;;13722:55;13794:18;;4735:49:7;13469:349:18;4735:49:7;4817:1;4802:12;:16;4794:46;;;;-1:-1:-1;;;4794:46:7;;14025:2:18;4794:46:7;;;14007:21:18;14064:2;14044:18;;;14037:30;14103:18;14083;;;14076:46;14139:18;;4794:46:7;13823:340:18;4794:46:7;4871:22;;4855:12;:38;;4847:47;;;;;;4927:9;;4907:16;4911:12;4907:1;:16;:::i;:::-;:29;;4898:52;;;;-1:-1:-1;;;4898:52:7;;14370:2:18;4898:52:7;;;14352:21:18;14409:1;14389:18;;;14382:29;14447:11;14427:18;;;14420:39;14476:18;;4898:52:7;14168:332:18;4898:52:7;4992:12;;4976;4962:11;;:26;;;;:::i;:::-;:42;;4954:76;;;;-1:-1:-1;;;4954:76:7;;14707:2:18;4954:76:7;;;14689:21:18;14746:2;14726:18;;;14719:30;14785:24;14765:18;;;14758:52;14827:18;;4954:76:7;14505:346:18;4954:76:7;5072:12;5058:11;;:26;;;;:::i;:::-;5045:9;:39;;5037:70;;;;-1:-1:-1;;;5037:70:7;;15058:2:18;5037:70:7;;;15040:21:18;15097:2;15077:18;;;15070:30;15136:20;15116:18;;;15109:48;15174:18;;5037:70:7;14856:342:18;5037:70:7;5161:12;5119:38;5146:10;5119:26;:38::i;:::-;:54;;5111:85;;;;-1:-1:-1;;;5111:85:7;;15405:2:18;5111:85:7;;;15387:21:18;15444:2;15424:18;;;15417:30;15483:21;15463:18;;;15456:49;15522:18;;5111:85:7;15203:343:18;5111:85:7;5208:9;5221:10;5208:23;5200:32;;;;;;5270:9;5265:95;5289:12;5285:1;:16;5265:95;;;5317:32;5327:10;5339:5;5343:1;5339;:5;:::i;5317:32::-;5303:3;;;:::i;:::-;;;5265:95;;;;5378:12;5363:11;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;5394:51:7;;-1:-1:-1;5420:10:7;5432:12;5394:25;:51::i;12062:132::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;12144:26:7::1;:46:::0;12062:132::o;10809:82::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;10864:13:7::1;:23:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;10809:82::o;11349:92::-;1070:6:14;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;11412:15:7::1;:25:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;11349:92::o;1897:192:14:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:14;1209:68;;;;-1:-1:-1;;;1209:68:14;;9154:2:18;1209:68:14;;;9136:21:18;;;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;9284:18;;1209:68:14;8952:356:18;1209:68:14;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:14;;19478:2:18;1978:73:14::1;::::0;::::1;19460:21:18::0;19517:2;19497:18;;;19490:30;19556:34;19536:18;;;19529:62;19627:8;19607:18;;;19600:36;19653:19;;1978:73:14::1;19276:402:18::0;1978:73:14::1;2062:19;2072:8;2062:9;:19::i;696:305:5:-:0;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:5;;;907:33;892:48;835:105;:158;;;-1:-1:-1;886:25:4;871:40;;;;957:36:5;763:155:4;4196::5;4295:7;:14;4261:4;;4285:24;;:58;;;;;4341:1;4313:30;;:7;4321;4313:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4278:65;4196:155;-1:-1:-1;;4196:155:5:o;6345:174::-;6420:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;6474:23;6420:24;6474:14;:23::i;:::-;6465:46;;;;;;;;;;;;6345:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;19885:2:18;2147:73:0;;;19867:21:18;19924:2;19904:18;;;19897:30;19963:31;19943:18;;;19936:59;20012:18;;2147:73:0;19683:353:18;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;20243:2:18;2296:78:0;;;20225:21:18;20282:2;20262:18;;;20255:30;20321:34;20301:18;;;20294:62;20392:28;20372:18;;;20365:56;20438:19;;2296:78:0;20041:422:18;4818:321:5;4948:18;4954:2;4958:7;4948:5;:18::i;:::-;4999:54;5030:1;5034:2;5038:7;5047:5;4999:22;:54::i;:::-;4977:154;;;;-1:-1:-1;;;4977:154:5;;20670:2:18;4977:154:5;;;20652:21:18;20709:2;20689:18;;;20682:30;20748:34;20728:18;;;20721:62;20819:20;20799:18;;;20792:48;20857:19;;4977:154:5;20468:414:18;8543:126:7;8623:30;;;;;;;:22;:30;;;;;:39;;8657:5;;8623:30;:39;;8657:5;;8623:39;:::i;:::-;;;;-1:-1:-1;;;;8543:126:7:o;4354:348:5:-;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:5;;21089:2:18;4464:73:5;;;21071:21:18;21128:2;21108:18;;;21101:30;21167:34;21147:18;;;21140:62;21238:14;21218:18;;;21211:42;21270:19;;4464:73:5;20887:408:18;4464:73:5;4548:13;4564:23;4579:7;4564:14;:23::i;:::-;4548:39;;4617:5;4606:16;;:7;:16;;;:51;;;;4650:7;4626:31;;:20;4638:7;4626:11;:20::i;:::-;:31;;;4606:51;:87;;;-1:-1:-1;2954:25:5;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:5:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:5;;21502:2:18;5950:85:5;;;21484:21:18;21541:2;21521:18;;;21514:30;21580:34;21560:18;;;21553:62;21651:11;21631:18;;;21624:39;21680:19;;5950:85:5;21300:405:18;5950:85:5;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:5;;21912:2:18;6046:65:5;;;21894:21:18;21951:2;21931:18;;;21924:30;21990:34;21970:18;;;21963:62;22061:6;22041:18;;;22034:34;22085:19;;6046:65:5;21710:400:18;6046:65:5;6228:29;6245:1;6249:7;6228:8;:29::i;:::-;6287:2;6268:7;6276;6268:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;6307:27;;6326:7;;6307:27;;;;;;;;;;6268:16;6307:27;5826:516;;;:::o;9135:126:7:-;9215:30;;;;;;;:22;:30;;;;;:39;;9249:5;;9215:30;:39;;9249:5;;9215:39;:::i;9578:187::-;9662:7;9681:14;9698:11;9704:4;9698:5;:11::i;:::-;9681:28;;9726:32;9740:6;9748:9;9726:13;:32::i;2097:173:14:-;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;3878:315:5:-;4035:28;4045:4;4051:2;4055:7;4035:9;:28::i;:::-;4082:48;4105:4;4111:2;4115:7;4124:5;4082:22;:48::i;:::-;4074:111;;;;-1:-1:-1;;;4074:111:5;;20670:2:18;4074:111:5;;;20652:21:18;20709:2;20689:18;;;20682:30;20748:34;20728:18;;;20721:62;20819:20;20799:18;;;20792:48;20857:19;;4074:111:5;20468:414:18;10021:88:7;10072:13;10098:7;10091:14;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:17;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:17;958:2;949:11;;:::i;:::-;;;818:154;;8262:120:7;8339:27;;;;;;;:19;:27;;;;;:36;;8370:5;;8339:27;:36;;8370:5;;8339:36;:::i;8839:126::-;8919:30;;;;;;;:22;:30;;;;;:39;;8953:5;;8919:30;:39;;8953:5;;8919:39;:::i;5142:346:5:-;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:5;;22434:2:18;5214:61:5;;;22416:21:18;;;22453:18;;;22446:30;22512:34;22492:18;;;22485:62;22564:18;;5214:61:5;22232:356:18;5214:61:5;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:5;;22795:2:18;5286:58:5;;;22777:21:18;22834:2;22814:18;;;22807:30;22873;22853:18;;;22846:58;22921:18;;5286:58:5;22593:352:18;5286:58:5;5413:7;:16;;;;;;;-1:-1:-1;5413:16:5;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:5;;-1:-1:-1;;5447:33:5;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:5;;6734:72;;;;;:36;;;;;;:72;;682:10:1;;6785:4:5;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:5;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:5;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:5;;20670:2:18;7019:60:5;;;20652:21:18;20709:2;20689:18;;;20682:30;20748:34;20728:18;;;20721:62;20819:20;20799:18;;;20792:48;20857:19;;7019:60:5;20468:414:18;6972:272:5;7194:6;7188:13;7179:6;7175:2;7171:15;7164:38;6730:529;6857:51;;6867:41;6857:51;;-1:-1:-1;6850:58:5;;6694:620;-1:-1:-1;7298:4:5;6522:799;;;;;;:::o;9771:230:7:-;9829:7;9855:135;9906:36;9972:4;9956:22;;;;;;9882:106;;;;;;;;23895:25:18;;;23951:2;23936:18;;23929:34;23883:2;23868:18;;23721:248;9882:106:7;;;;;;;;;;;;;9872:117;;;;;;9855:16;:135::i;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;4439:167:3:-;4516:7;4543:55;4565:20;:18;:20::i;:::-;4587:10;9437:57:2;;25952:66:18;9437:57:2;;;25940:79:18;26035:11;;;26028:27;;;26071:12;;;26064:28;;;9400:7:2;;26108:12:18;;9437:57:2;;;;;;;;;;;;9427:68;;;;;;9420:75;;9307:196;;;;;2283:1308;2364:7;2373:12;2598:9;:16;2618:2;2598:22;2594:990;;;2894:4;2879:20;;2873:27;2944:4;2929:20;;2923:27;3002:4;2987:20;;2981:27;2637:9;2973:36;3045:25;3056:4;2973:36;2873:27;2923;3045:10;:25::i;:::-;3038:32;;;;;;;;;2594:990;3092:9;:16;3112:2;3092:22;3088:496;;;3367:4;3352:20;;3346:27;3418:4;3403:20;;3397:27;3460:23;3471:4;3346:27;3397;3460:10;:23::i;:::-;3453:30;;;;;;;;3088:496;-1:-1:-1;3532:1:2;;-1:-1:-1;3536:35:2;3088:496;2283:1308;;;;;:::o;554:643::-;632:20;623:5;:29;;;;;;;;:::i;:::-;;619:571;;;554:643;:::o;619:571::-;730:29;721:5;:38;;;;;;;;:::i;:::-;;717:473;;;776:34;;-1:-1:-1;;;776:34:2;;24365:2:18;776:34:2;;;24347:21:18;24404:2;24384:18;;;24377:30;24443:26;24423:18;;;24416:54;24487:18;;776:34:2;24163:348:18;717:473:2;841:35;832:5;:44;;;;;;;;:::i;:::-;;828:362;;;893:41;;-1:-1:-1;;;893:41:2;;24718:2:18;893:41:2;;;24700:21:18;24757:2;24737:18;;;24730:30;24796:33;24776:18;;;24769:61;24847:18;;893:41:2;24516:355:18;828:362:2;965:30;956:5;:39;;;;;;;;:::i;:::-;;952:238;;;1012:44;;-1:-1:-1;;;1012:44:2;;25078:2:18;1012:44:2;;;25060:21:18;25117:2;25097:18;;;25090:30;25156:34;25136:18;;;25129:62;25227:4;25207:18;;;25200:32;25249:19;;1012:44:2;24876:398:18;952:238:2;1087:30;1078:5;:39;;;;;;;;:::i;:::-;;1074:116;;;1134:44;;-1:-1:-1;;;1134:44:2;;25481:2:18;1134:44:2;;;25463:21:18;25520:2;25500:18;;;25493:30;25559:34;25539:18;;;25532:62;25630:4;25610:18;;;25603:32;25652:19;;1134:44:2;25279:398:18;3212:314:3;3265:7;3297:4;3289:29;3306:12;3289:29;;:66;;;;;3339:16;3322:13;:33;3289:66;3285:234;;;-1:-1:-1;3379:24:3;;3212:314::o;3285:234::-;-1:-1:-1;3715:73:3;;;3465:10;3715:73;;;;26793:25:18;;;;3477:12:3;26834:18:18;;;26827:34;3491:15:3;26877:18:18;;;26870:34;3759:13:3;26920:18:18;;;26913:34;3782:4:3;26963:19:18;;;;26956:84;;;;3715:73:3;;;;;;;;;;26765:19:18;;;;3715:73:3;;;3705:84;;;;;;3212:314::o;5845:1632:2:-;5976:7;;6910:66;6897:79;;6893:163;;;-1:-1:-1;7009:1:2;;-1:-1:-1;7013:30:2;6993:51;;6893:163;7070:1;:7;;7075:2;7070:7;;:18;;;;;7081:1;:7;;7086:2;7081:7;;7070:18;7066:102;;;-1:-1:-1;7121:1:2;;-1:-1:-1;7125:30:2;7105:51;;7066:102;7282:24;;;7265:14;7282:24;;;;;;;;;26358:25:18;;;26431:4;26419:17;;26399:18;;;26392:45;;;;26453:18;;;26446:34;;;26496:18;;;26489:34;;;7282:24:2;;26330:19:18;;7282:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7282:24:2;;;;;;-1:-1:-1;;7321:20:2;;;7317:103;;7374:1;7378:29;7358:50;;;;;;;7317:103;7440:6;-1:-1:-1;7448:20:2;;-1:-1:-1;5845:1632:2;;;;;;;;:::o;4887:344::-;5001:7;;5060:66;5047:80;;5001:7;5154:25;5170:3;5155:18;;;5177:2;5154:25;:::i;:::-;5138:42;;5198:25;5209:4;5215:1;5218;5221;5198:10;:25::i;:::-;5191:32;;;;;;4887:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:18;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:180::-;999:6;1052:2;1040:9;1031:7;1027:23;1023:32;1020:52;;;1068:1;1065;1058:12;1020:52;-1:-1:-1;1091:23:18;;940:180;-1:-1:-1;940:180:18:o;1125:184::-;1177:77;1174:1;1167:88;1274:4;1271:1;1264:15;1298:4;1295:1;1288:15;1314:778;1357:5;1410:3;1403:4;1395:6;1391:17;1387:27;1377:55;;1428:1;1425;1418:12;1377:55;1464:6;1451:20;1490:18;1527:2;1523;1520:10;1517:36;;;1533:18;;:::i;:::-;1667:2;1661:9;1729:4;1721:13;;1572:66;1717:22;;;1741:2;1713:31;1709:40;1697:53;;;1765:18;;;1785:22;;;1762:46;1759:72;;;1811:18;;:::i;:::-;1851:10;1847:2;1840:22;1886:2;1878:6;1871:18;1932:3;1925:4;1920:2;1912:6;1908:15;1904:26;1901:35;1898:55;;;1949:1;1946;1939:12;1898:55;2013:2;2006:4;1998:6;1994:17;1987:4;1979:6;1975:17;1962:54;2060:1;2053:4;2048:2;2040:6;2036:15;2032:26;2025:37;2080:6;2071:15;;;;;;1314:778;;;;:::o;2097:322::-;2166:6;2219:2;2207:9;2198:7;2194:23;2190:32;2187:52;;;2235:1;2232;2225:12;2187:52;2275:9;2262:23;2308:18;2300:6;2297:30;2294:50;;;2340:1;2337;2330:12;2294:50;2363;2405:7;2396:6;2385:9;2381:22;2363:50;:::i;2424:258::-;2496:1;2506:113;2520:6;2517:1;2514:13;2506:113;;;2596:11;;;2590:18;2577:11;;;2570:39;2542:2;2535:10;2506:113;;;2637:6;2634:1;2631:13;2628:48;;;-1:-1:-1;;2672:1:18;2654:16;;2647:27;2424:258::o;2687:317::-;2729:3;2767:5;2761:12;2794:6;2789:3;2782:19;2810:63;2866:6;2859:4;2854:3;2850:14;2843:4;2836:5;2832:16;2810:63;:::i;:::-;2918:2;2906:15;2923:66;2902:88;2893:98;;;;2993:4;2889:109;;2687:317;-1:-1:-1;;2687:317:18:o;3009:220::-;3158:2;3147:9;3140:21;3121:4;3178:45;3219:2;3208:9;3204:18;3196:6;3178:45;:::i;3465:154::-;3551:42;3544:5;3540:54;3533:5;3530:65;3520:93;;3609:1;3606;3599:12;3624:315;3692:6;3700;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:31;3852:5;3827:31;:::i;:::-;3877:5;3929:2;3914:18;;;;3901:32;;-1:-1:-1;;;3624:315:18:o;4126:255::-;4193:6;4246:2;4234:9;4225:7;4221:23;4217:32;4214:52;;;4262:1;4259;4252:12;4214:52;4301:9;4288:23;4320:31;4345:5;4320:31;:::i;4386:610::-;4482:6;4490;4498;4551:2;4539:9;4530:7;4526:23;4522:32;4519:52;;;4567:1;4564;4557:12;4519:52;4603:9;4590:23;4580:33;;4664:2;4653:9;4649:18;4636:32;4687:18;4728:2;4720:6;4717:14;4714:34;;;4744:1;4741;4734:12;4714:34;4767:50;4809:7;4800:6;4789:9;4785:22;4767:50;:::i;:::-;4757:60;;4870:2;4859:9;4855:18;4842:32;4826:48;;4899:2;4889:8;4886:16;4883:36;;;4915:1;4912;4905:12;4883:36;;4938:52;4982:7;4971:8;4960:9;4956:24;4938:52;:::i;:::-;4928:62;;;4386:610;;;;;:::o;5001:456::-;5078:6;5086;5094;5147:2;5135:9;5126:7;5122:23;5118:32;5115:52;;;5163:1;5160;5153:12;5115:52;5202:9;5189:23;5221:31;5246:5;5221:31;:::i;:::-;5271:5;-1:-1:-1;5328:2:18;5313:18;;5300:32;5341:33;5300:32;5341:33;:::i;:::-;5001:456;;5393:7;;-1:-1:-1;;;5447:2:18;5432:18;;;;5419:32;;5001:456::o;5714:160::-;5779:20;;5835:13;;5828:21;5818:32;;5808:60;;5864:1;5861;5854:12;5808:60;5714:160;;;:::o;5879:180::-;5935:6;5988:2;5976:9;5967:7;5963:23;5959:32;5956:52;;;6004:1;6001;5994:12;5956:52;6027:26;6043:9;6027:26;:::i;6064:542::-;6151:6;6159;6212:2;6200:9;6191:7;6187:23;6183:32;6180:52;;;6228:1;6225;6218:12;6180:52;6268:9;6255:23;6297:18;6338:2;6330:6;6327:14;6324:34;;;6354:1;6351;6344:12;6324:34;6377:50;6419:7;6410:6;6399:9;6395:22;6377:50;:::i;:::-;6367:60;;6480:2;6469:9;6465:18;6452:32;6436:48;;6509:2;6499:8;6496:16;6493:36;;;6525:1;6522;6515:12;6493:36;;6548:52;6592:7;6581:8;6570:9;6566:24;6548:52;:::i;:::-;6538:62;;;6064:542;;;;;:::o;6611:315::-;6679:6;6687;6740:2;6728:9;6719:7;6715:23;6711:32;6708:52;;;6756:1;6753;6746:12;6708:52;6792:9;6779:23;6769:33;;6852:2;6841:9;6837:18;6824:32;6865:31;6890:5;6865:31;:::i;:::-;6915:5;6905:15;;;6611:315;;;;;:::o;6931:632::-;7102:2;7154:21;;;7224:13;;7127:18;;;7246:22;;;7073:4;;7102:2;7325:15;;;;7299:2;7284:18;;;7073:4;7368:169;7382:6;7379:1;7376:13;7368:169;;;7443:13;;7431:26;;7512:15;;;;7477:12;;;;7404:1;7397:9;7368:169;;;-1:-1:-1;7554:3:18;;6931:632;-1:-1:-1;;;;;;6931:632:18:o;7568:315::-;7633:6;7641;7694:2;7682:9;7673:7;7669:23;7665:32;7662:52;;;7710:1;7707;7700:12;7662:52;7749:9;7736:23;7768:31;7793:5;7768:31;:::i;:::-;7818:5;-1:-1:-1;7842:35:18;7873:2;7858:18;;7842:35;:::i;:::-;7832:45;;7568:315;;;;;:::o;7888:666::-;7983:6;7991;7999;8007;8060:3;8048:9;8039:7;8035:23;8031:33;8028:53;;;8077:1;8074;8067:12;8028:53;8116:9;8103:23;8135:31;8160:5;8135:31;:::i;:::-;8185:5;-1:-1:-1;8242:2:18;8227:18;;8214:32;8255:33;8214:32;8255:33;:::i;:::-;8307:7;-1:-1:-1;8361:2:18;8346:18;;8333:32;;-1:-1:-1;8416:2:18;8401:18;;8388:32;8443:18;8432:30;;8429:50;;;8475:1;8472;8465:12;8429:50;8498;8540:7;8531:6;8520:9;8516:22;8498:50;:::i;:::-;8488:60;;;7888:666;;;;;;;:::o;8559:388::-;8627:6;8635;8688:2;8676:9;8667:7;8663:23;8659:32;8656:52;;;8704:1;8701;8694:12;8656:52;8743:9;8730:23;8762:31;8787:5;8762:31;:::i;:::-;8812:5;-1:-1:-1;8869:2:18;8854:18;;8841:32;8882:33;8841:32;8882:33;:::i;9313:437::-;9392:1;9388:12;;;;9435;;;9456:61;;9510:4;9502:6;9498:17;9488:27;;9456:61;9563:2;9555:6;9552:14;9532:18;9529:38;9526:218;;;9600:77;9597:1;9590:88;9701:4;9698:1;9691:15;9729:4;9726:1;9719:15;9526:218;;9313:437;;;:::o;11402:184::-;11454:77;11451:1;11444:88;11551:4;11548:1;11541:15;11575:4;11572:1;11565:15;11591:128;11631:3;11662:1;11658:6;11655:1;11652:13;11649:39;;;11668:18;;:::i;:::-;-1:-1:-1;11704:9:18;;11591:128::o;11724:228::-;11764:7;11890:1;11822:66;11818:74;11815:1;11812:81;11807:1;11800:9;11793:17;11789:105;11786:131;;;11897:18;;:::i;:::-;-1:-1:-1;11937:9:18;;11724:228::o;11957:184::-;12009:77;12006:1;11999:88;12106:4;12103:1;12096:15;12130:4;12127:1;12120:15;12146:120;12186:1;12212;12202:35;;12217:18;;:::i;:::-;-1:-1:-1;12251:9:18;;12146:120::o;12271:125::-;12311:4;12339:1;12336;12333:8;12330:34;;;12344:18;;:::i;:::-;-1:-1:-1;12381:9:18;;12271:125::o;15551:195::-;15590:3;15621:66;15614:5;15611:77;15608:103;;;15691:18;;:::i;:::-;-1:-1:-1;15738:1:18;15727:13;;15551:195::o;16520:184::-;16572:77;16569:1;16562:88;16669:4;16666:1;16659:15;16693:4;16690:1;16683:15;18446:470;18625:3;18663:6;18657:13;18679:53;18725:6;18720:3;18713:4;18705:6;18701:17;18679:53;:::i;:::-;18795:13;;18754:16;;;;18817:57;18795:13;18754:16;18851:4;18839:17;;18817:57;:::i;:::-;18890:20;;18446:470;-1:-1:-1;;;;18446:470:18:o;22115:112::-;22147:1;22173;22163:35;;22178:18;;:::i;:::-;-1:-1:-1;22212:9:18;;22115:112::o;22950:512::-;23144:4;23173:42;23254:2;23246:6;23242:15;23231:9;23224:34;23306:2;23298:6;23294:15;23289:2;23278:9;23274:18;23267:43;;23346:6;23341:2;23330:9;23326:18;23319:34;23389:3;23384:2;23373:9;23369:18;23362:31;23410:46;23451:3;23440:9;23436:19;23428:6;23410:46;:::i;:::-;23402:54;22950:512;-1:-1:-1;;;;;;22950:512:18:o;23467:249::-;23536:6;23589:2;23577:9;23568:7;23564:23;23560:32;23557:52;;;23605:1;23602;23595:12;23557:52;23637:9;23631:16;23656:30;23680:5;23656:30;:::i;23974:184::-;24026:77;24023:1;24016:88;24123:4;24120:1;24113:15;24147:4;24144:1;24137:15

Swarm Source

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