ETH Price: $3,312.80 (-3.53%)
Gas: 18 Gwei

Token

EtherCats ()
 

Overview

Max Total Supply

2,518

Holders

238

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
gotrilla.eth
0x3546BD99767246C358ff1497f1580C8365b25AC8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

EtherCats is the first NFT project to use Chainlink VRF for mints. The historic Founders Series, limited to 500 packs (2,500 total cats), was deployed January 17th, 2021, and sold out quickly in early March once featured by OpenSea.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BuyEtherCatsFoundersSeries

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-17
*/

/**
 * OpenZepplin contracts contained within are licensed under an MIT License.
 * 
 * The MIT License (MIT)
 * 
 * Copyright (c) 2016-2020 zOS Global Limited
 * 
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 * Chainlink contracts contained within are licensed under an MIT License.
 * 
 * The MIT License (MIT)
 * 
 * Copyright (c) 2018 SmartContract ChainLink, Ltd.
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */

//File: https://raw.githubusercontent.com/smartcontractkit/chainlink/master/evm-contracts/src/v0.6/VRFRequestIDBase.sol

pragma solidity ^0.6.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(bytes32 _keyHash, uint256 _userSeed,
    address _requester, uint256 _nonce)
    internal pure returns (uint256)
  {
    return  uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

//File: https://raw.githubusercontent.com/smartcontractkit/chainlink/master/evm-contracts/src/v0.6/interfaces/LinkTokenInterface.sol

pragma solidity ^0.6.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);
  function approve(address spender, uint256 value) external returns (bool success);
  function balanceOf(address owner) external view returns (uint256 balance);
  function decimals() external view returns (uint8 decimalPlaces);
  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);
  function increaseApproval(address spender, uint256 subtractedValue) external;
  function name() external view returns (string memory tokenName);
  function symbol() external view returns (string memory tokenSymbol);
  function totalSupply() external view returns (uint256 totalTokensIssued);
  function transfer(address to, uint256 value) external returns (bool success);
  function transferAndCall(address to, uint256 value, bytes calldata data) external returns (bool success);
  function transferFrom(address from, address to, uint256 value) external returns (bool success);
}

//File: https://raw.githubusercontent.com/smartcontractkit/chainlink/master/evm-contracts/src/v0.6/vendor/SafeMathChainlink.sol

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMathChainlink {

  /**
    * @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) {
    uint256 c = a + b;
    require(c >= a, "SafeMath: addition overflow");

    return c;
  }

  /**
    * @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) {
    require(b <= a, "SafeMath: subtraction overflow");
    uint256 c = a - b;

    return c;
  }

  /**
    * @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) {
    // 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-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    uint256 c = a * b;
    require(c / a == b, "SafeMath: multiplication overflow");

    return c;
  }

  /**
    * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
    // Solidity only automatically asserts when dividing by 0
    require(b > 0, "SafeMath: division by zero");
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold

    return c;
  }

  /**
    * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
    * Reverts 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) {
    require(b != 0, "SafeMath: modulo by zero");
    return a % b;
  }
}

//File: https://raw.githubusercontent.com/smartcontractkit/chainlink/master/evm-contracts/src/v0.6/VRFConsumerBase.sol

pragma solidity ^0.6.0;

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerInterface, and can
 * @dev initialize VRFConsumerInterface's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details.
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness()
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls fulfillRandomness().
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  using SafeMathChainlink for uint256;

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it.
   *
   * @dev The VRFCoordinator expects a calling contract to have a method with
   * @dev this signature, and will trigger it once it has verified the proof
   * @dev associated with the randomness (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
   
  function fulfillRandomness(bytes32 requestId, uint256 randomness)
    internal virtual;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev See "SECURITY CONSIDERATIONS" above for more information on _seed.
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   * @param _seed seed mixed into the input of the VRF
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to *
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee, uint256 _seed)
    internal returns (bytes32 requestId)
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, _seed));

   /**
    * This is the seed passed to VRFCoordinator. The oracle will mix this with
    * the hash of the block containing this request to obtain the seed/input
    * which is finally passed to the VRF cryptographic machinery.
    */
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, _seed, address(this), nonces[_keyHash]);

   /**
    * nonces[_keyHash] must stay in sync with
    * VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    * successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    * This provides protection against the user repeating their input
    * seed, which would result in a predictable/duplicate output.
    */
    nonces[_keyHash] = nonces[_keyHash].add(1);
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

 /**
  * Nonces for each VRF key from which the randomness has been requested.
  * 
  * Must stay in sync with VRFCoordinator[_keyHash][this].
  */
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) public nonces;
  constructor(address _vrfCoordinator, address _link) public {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

 /**
  * The function rawFulfillRandomness is called by the VRFCoordinator when it receives a valid VRF
  * proof. It then calls fulfillRandomness after validating
  * the origin of the call.
  */
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

//File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/utils/Address.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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.3._
     */
    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.3._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

//File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/math/SafeMath.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        //assert(a == b * c + a % b); //There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

//File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/GSN/Context.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

//File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/introspection/ERC165.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC1155/IERC1155.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

//File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC1155/IERC1155Receiver.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

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

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

//File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/introspection/IERC165.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/master/contracts/token/ERC1155/IERC1155MetadataURI.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

// File: browser/EtherCats.sol

pragma solidity 0.6.6;

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

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

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

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

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

    /**
     * @dev See {_setURI}.
     */
    constructor() public {
        _setURI("ipfs://QmV9hwWvs2vsrBV8ewjfQSijFG4PEpJkGhxZBjRia4gyYP/{id}.json");

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

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

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

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

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

        for (uint256 i = 0; i < accounts.length; ++i) {
            require(accounts[i] != address(0), "ERC1155: batch balance query for the zero address");
            batchBalances[i] = _balances[ids[i]][accounts[i]];
        }

        return batchBalances;
    }

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

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

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

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

        address operator = _msgSender();

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

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

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

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

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

        address operator = _msgSender();

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

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

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

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

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

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }
          
    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        bytes memory data = "";

        address operator = to;

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

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

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

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

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

        address operator = _msgSender();

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

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

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

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

        address operator = _msgSender();

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

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

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

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

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

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

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

        return array;
    }
}

//The EtherCatsFactory contract was created by Woody Deck. All artwork created by Nadia Khuzina, © 2021. An explicit license is granted to exchanges (e.g. OpenSea, Rarible), NFT/crypto or other types of tracking websites (e.g. wikipedia, cryptoartpulse.com), and like compiled mobile applications engaged in the former (e.g. iOS applications), to display and modify these works for purposes of facilitating the market or documentation of EtherCats.io artworks. No other rights are conveyed besides the implicit ones (e.g. An owner displaying their NFTs publicly).
contract EtherCatsFactory is ERC1155 {
    uint256 constant public catsInPool = 9;

    //This is a lookup table to determine the rating of the cat from the random number provided by Chainlink.
    function ratingLookup(uint256 index) internal pure returns(uint256) {
        if (index <= 1275) return 1;
        else if (index <= 2550) return 2;
        else if (index <= 3825) return 3;
        else if (index <= 5100) return 4;
        else if (index <= 6375) return 5;
        else if (index <= 7650) return 6;
        else if (index <= 8925) return 7;
        else if (index <= 10200) return 8;
        else if (index <= 11475) return 9;
        else if (index <= 12750) return 10;
        else if (index <= 14025) return 11;
        else if (index <= 15300) return 12;
        else if (index <= 16575) return 13;
        else if (index <= 17850) return 14;
        else if (index <= 19125) return 15;
        else if (index <= 20400) return 16;
        else if (index <= 21675) return 17;
        else if (index <= 22950) return 18;
        else if (index <= 24225) return 19;
        else if (index <= 25500) return 20;
        else if (index <= 26775) return 21;
        else if (index <= 28050) return 22;
        else if (index <= 29325) return 23;
        else if (index <= 30600) return 24;
        else if (index <= 31875) return 25;
        else if (index <= 33150) return 26;
        else if (index <= 34425) return 27;
        else if (index <= 35700) return 28;
        else if (index <= 36975) return 29;
        else if (index <= 38250) return 30;
        else if (index <= 39525) return 31;
        else if (index <= 40800) return 32;
        else if (index <= 42075) return 33;
        else if (index <= 43350) return 34;
        else if (index <= 44625) return 35;
        else if (index <= 45900) return 36;
        else if (index <= 47175) return 37;
        else if (index <= 48450) return 38;
        else if (index <= 49725) return 39;
        else if (index <= 51000) return 40;
        else if (index <= 52275) return 41;
        else if (index <= 53550) return 42;
        else if (index <= 54825) return 43;
        else if (index <= 56100) return 44;
        else if (index <= 57375) return 45;
        else if (index <= 58650) return 46;
        else if (index <= 59925) return 47;
        else if (index <= 61200) return 48;
        else if (index <= 62475) return 49;
        else if (index <= 63750) return 50;
        else if (index <= 65025) return 51;
        else if (index <= 66300) return 52;
        else if (index <= 67575) return 53;
        else if (index <= 68850) return 54;
        else if (index <= 70125) return 55;
        else if (index <= 71400) return 56;
        else if (index <= 72675) return 57;
        else if (index <= 73950) return 58;
        else if (index <= 75225) return 59;
        else if (index <= 76500) return 60;
        else if (index <= 77775) return 61;
        else if (index <= 79050) return 62;
        else if (index <= 80325) return 63;
        else if (index <= 81600) return 64;
        else if (index <= 82875) return 65;
        else if (index <= 84150) return 66;
        else if (index <= 85425) return 67;
        else if (index <= 86700) return 68;
        else if (index <= 87975) return 69;
        else if (index <= 88900) return 70;
        else if (index <= 89800) return 71;
        else if (index <= 90700) return 72;
        else if (index <= 91600) return 73;
        else if (index <= 92500) return 74;
        else if (index <= 93400) return 75;
        else if (index <= 94300) return 76;
        else if (index <= 95200) return 77;
        else if (index <= 96100) return 78;
        else if (index <= 97000) return 79;
        else if (index <= 97200) return 80;
        else if (index <= 97400) return 81;
        else if (index <= 97600) return 82;
        else if (index <= 97800) return 83;
        else if (index <= 98000) return 84;
        else if (index <= 98200) return 85;
        else if (index <= 98400) return 86;
        else if (index <= 98600) return 87;
        else if (index <= 98800) return 88;
        else if (index <= 99000) return 89;
        else if (index <= 99145) return 90;
        else if (index <= 99285) return 91;
        else if (index <= 99415) return 92;
        else if (index <= 99540) return 93;
        else if (index <= 99660) return 94;
        else if (index <= 99770) return 95;
        else if (index <= 99870) return 96;
        else if (index <= 99960) return 97;
        else if (index <= 99990) return 98;
        else if (index < 99999) return 99;
        else if (index == 99999) return 100;
    }

    //This is a lookup table to determine the rating of the cat from the random number provided by Chainlink.
    function multiplierLookup(uint256 index) internal pure returns(uint256) {
        if (index <= 50) return 1;
        else if (index <= 85) return 2;
        else if (index <= 95) return 3;
        else if (index < 99) return 5;
        else if (index == 99) return 8;
    }

    //Before the cats are minted, the name, rating, and multiplier must be determined from the random number provided by Chainlink.
    function mintFiveCats(address buyer, uint256 randomNumberFromChainlink) internal {
        uint256[5] memory cats;
        uint256[5] memory ratings;
        uint256[5] memory multipliers;
        uint256[] memory tokenIDs = new uint256[](5);
        uint256[] memory amounts = new uint256[](5);
        amounts[0] = 1;
        amounts[1] = 1;
        amounts[2] = 1;
        amounts[3] = 1;
        amounts[4] = 1;

        //Take the verifiably random number from Chainlink, and chop it up into pieces for determining each cat.
        uint256 randomNumber = randomNumberFromChainlink;
        //Take the remainder of the random number to find the cat. Adding the array size means that there is never a quotient smaller than the array size.
        //Cat 0 (1st Cat)
        cats[0] = (randomNumber % 10 ** 3 + catsInPool) % catsInPool;
        ratings[0] = ratingLookup((randomNumber % 10 ** 8 / 10 ** 3));
        multipliers[0] = multiplierLookup((randomNumber % 10 ** 10 / 10 ** 8));
        //Cat 1 (2nd Cat)
        cats[1] = (randomNumber % 10 ** 13 / 10 ** 10) % catsInPool;
        ratings[1] = ratingLookup((randomNumber % 10 ** 18 / 10 ** 13));
        multipliers[1] = multiplierLookup((randomNumber % 10 ** 20 / 10 ** 18));
        //Cat 2 (3rd Cat)
        cats[2] = (randomNumber % 10 ** 23 / 10 ** 20) % catsInPool;
        ratings[2] = ratingLookup((randomNumber % 10 ** 28 / 10 ** 23));
        multipliers[2] = multiplierLookup((randomNumber % 10 ** 30 / 10 ** 28));
        //Cat 3 (4th Cat)
        cats[3] = (randomNumber % 10 ** 33 / 10 ** 30) % catsInPool;
        ratings[3] = ratingLookup((randomNumber % 10 ** 38 / 10 ** 33));
        multipliers[3] = multiplierLookup((randomNumber % 10 ** 40 / 10 ** 38));
        //Cat 4 (5th Cat)
        cats[4] = (randomNumber % 10 ** 43 / 10 ** 40) % catsInPool;
        ratings[4] = ratingLookup((randomNumber % 10 ** 48 / 10 ** 43));
        multipliers[4] = multiplierLookup((randomNumber % 10 ** 50 / 10 ** 48));

        //The token ID is determined by numerically concatenating the cat number, rating, and multiplier. Identical cats will just generate more of the same token ID.
        //The format is [Cat Number 0] + [Rating 000] + [Multiplier 0]. e.g. token ID 40793 is a Parvati cat with a 79 rating, and a 3x multiplier. The middle number has a leading zero because it is possible for the rating to be 100.
        //Cat 1 is Sakura
        //Cat 2 is Anurak
        //Cat 3 is Chukcha
        //Cat 4 is Parvati
        //Cat 5 is Gatinho
        //Cat 6 is Gaston
        //Cat 7 is Plezier
        //Cat 8 is Yulenka
        //Cat 9 is Cooter
        for (uint i = 0; i < 5; i++) {
            tokenIDs[i] = (((cats[i] + 1) * 10 ** 4) + (ratings[i] * 10)) + multipliers[i];
        }

        _mintBatch(buyer, tokenIDs, amounts);
    }
}

//The BuyEtherCatsFoundersSeries contract was created by Woody Deck, with snippets from Chainlink included under their MIT License (posted above).
contract BuyEtherCatsFoundersSeries is VRFConsumerBase, EtherCatsFactory {
    address public contractOwner;
    address payable public receiverAccount;
    uint256 public price;
    bool public forSale;
    bool public permanentlyStop;
    bytes32 internal keyHash;
    uint256 internal fee;
    uint256 internal randomResult;

    //Because the transaction of minting cats is between two transactions, you must map the request id to keep track of the operator address in accordance with the ERC1155 standard.
    mapping(bytes32 => address) buyerAddress;

    constructor()
    VRFConsumerBase(
        0xf0d54349aDdcf704F77AE15b96510dEA15cb7952, //VRF Coordinator
        0x514910771AF9Ca656af840dff83E8264EcF986CA //LINK Token
    ) public {
        //Chainlink key hash.
        keyHash = 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445;
        fee = 2 * 10 ** 18; //2 LINK
        contractOwner = msg.sender;
        receiverAccount = msg.sender;
        price = 0.15 * 10 ** 18;
        forSale = false;
        permanentlyStop = false;
    }

    modifier onlyOwner() {
        require(msg.sender == contractOwner);
        _;
    }
    //The request to Chainlink for a random number. There are two transactions that must be confirmed in separate blocks. Cats are not minted until Chainlink calls back with the random number.
    function getRandomNumber() internal returns(bytes32 requestId) {
        uint256 userProvidedSeed = 0;
        require(LINK.balanceOf(address(this)) > fee, "Not enough LINK - fill contract with faucet");
        requestId = requestRandomness(keyHash, fee, userProvidedSeed);
        buyerAddress[requestId] = msg.sender;
        return requestId;
    }

    //When the Chainlink VRF coordinator calls back with the random number the cats are then minted.
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
        require(msg.sender == 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952, "Only the VRF Coordinator may call this function.");
        mintFiveCats(buyerAddress[requestId], randomness);

    }

    //The transaction starts here when minting cats. It calls the function to Chainlink to request a verifiably random number.
    function mint() payable external {
        if (msg.value == price && forSale == true && permanentlyStop == false) {
            receiverAccount.transfer(msg.value);
            getRandomNumber();
        } else {
            revert();
        }
    }

    //Start or pause the minting functionality in the contract.
    function changeSaleState() external onlyOwner {
        forSale = !forSale;
    }

    //Permanently stops minting. This cannot be reverted. Only can be triggered when forSale is false.
    function permanentlyStopMinting() external onlyOwner {
        if (forSale == false) {
            permanentlyStop = true;
        } else {
            revert();
        }
    }

    //Change the price of minting. The price of minting is dependent on the price of LINK.
    function changePrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    //Set the receiving account of the Ether paid for minting.
    function changeReceivingAccount(address payable newReceivingAddress) external onlyOwner {
        receiverAccount = newReceivingAddress;
    }
    
    //Burn one token.
    function burn(address account, uint256 id, uint256 amount) external {
        require(account == msg.sender, "You can only burn your own tokens.");
        _burn(account, id, amount);
    }
    
    //Burn more than one token.
    function burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) public {
        require(account == msg.sender, "You can only burn your own tokens.");
        _burnBatch(account, ids, amounts);
    }
    
    //Since the token ids are deterministic, include all property details, and the cat names are declared in the contract comments, the metadata can be safely updated if needed without compromising the integrity of the tokens.
    //This function allows the metadata to be updated, and the location of it to be changed.
    function setURI(string memory newuri) public onlyOwner {
        _uri = newuri;
    }

    //Withdraw all of the LINK from the contract.
    function withdrawLink() public onlyOwner {
    LinkTokenInterface link = LinkTokenInterface(0x514910771AF9Ca656af840dff83E8264EcF986CA);
    require(link.transfer(receiverAccount, link.balanceOf(address(this))), "Unable to transfer");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"catsInPool","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newReceivingAddress","type":"address"}],"name":"changeReceivingAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"changeSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentlyStop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"permanentlyStopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"receiverAccount","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawLink","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040523480156200001157600080fd5b5073f0d54349addcf704f77ae15b96510dea15cb795273514910771af9ca656af840dff83e8264ecf986ca8173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250505050620000c46301ffc9a760e01b6200022460201b60201c565b620000ee6040518060600160405280603f8152602001620052e9603f91396200032d60201b60201c565b6200010663d9b67a2660e01b6200022460201b60201c565b6200011e630e89341c60e01b6200022460201b60201c565b7faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44560001b600981905550671bc16d674ec80000600a8190555033600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550670214e8348c4f00006007819055506000600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff021916908315150217905550620003f8565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002c1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b80600490805190602001906200034592919062000349565b5050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200038c57805160ff1916838001178555620003bd565b82800160010185558215620003bd579182015b82811115620003bc5782518255916020019190600101906200039f565b5b509050620003cc9190620003d0565b5090565b620003f591905b80821115620003f1576000816000905550600101620003d7565b5090565b90565b60805160601c60a05160601c614ebd6200042c60003980611c8c52806137225250806124e352806136e65250614ebd6000f3fe6080604052600436106101655760003560e01c80638dc654a2116100d1578063ce606ee01161008a578063e52c087211610064578063e52c087214610c21578063e985e9c514610c4c578063f242432a14610cd5578063f5298aca14610df157610165565b8063ce606ee014610b84578063d8f8604014610bdb578063dd9c1f2314610c0a57610165565b80638dc654a214610a1657806394985ddd14610a2d5780639e317f1214610a72578063a035b1fe14610ac1578063a22cb46514610aec578063a2b40d1914610b4957610165565b80633cbb10fa116101235780633cbb10fa14610601578063466ccac0146106585780634e1273f4146106875780635d0948421461083557806361017b001461084c5780636b20c4541461089d57610165565b8062fdd58e1461016a57806301ffc9a7146101d957806302fe53051461024b5780630e89341c146103135780631249c58b146103c75780632eb2c2d6146103d1575b600080fd5b34801561017657600080fd5b506101c36004803603604081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e56565b6040518082815260200191505060405180910390f35b3480156101e557600080fd5b50610231600480360360208110156101fc57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610f36565b604051808215151515815260200191505060405180910390f35b34801561025757600080fd5b506103116004803603602081101561026e57600080fd5b810190808035906020019064010000000081111561028b57600080fd5b82018360208201111561029d57600080fd5b803590602001918460018302840111640100000000831117156102bf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610f9e565b005b34801561031f57600080fd5b5061034c6004803603602081101561033657600080fd5b8101908080359060200190929190505050611012565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038c578082015181840152602081019050610371565b50505050905090810190601f1680156103b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103cf6110b6565b005b3480156103dd57600080fd5b506105ff600480360360a08110156103f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561045157600080fd5b82018360208201111561046357600080fd5b8035906020019184602083028401116401000000008311171561048557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104e557600080fd5b8201836020820111156104f757600080fd5b8035906020019184602083028401116401000000008311171561051957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561057957600080fd5b82018360208201111561058b57600080fd5b803590602001918460018302840111640100000000831117156105ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061117c565b005b34801561060d57600080fd5b5061061661160a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561066457600080fd5b5061066d611630565b604051808215151515815260200191505060405180910390f35b34801561069357600080fd5b506107de600480360360408110156106aa57600080fd5b81019080803590602001906401000000008111156106c757600080fd5b8201836020820111156106d957600080fd5b803590602001918460208302840111640100000000831117156106fb57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561075b57600080fd5b82018360208201111561076d57600080fd5b8035906020019184602083028401116401000000008311171561078f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611643565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610821578082015181840152602081019050610806565b505050509050019250505060405180910390f35b34801561084157600080fd5b5061084a611838565b005b34801561085857600080fd5b5061089b6004803603602081101561086f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118d5565b005b3480156108a957600080fd5b50610a14600480360360608110156108c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156108fd57600080fd5b82018360208201111561090f57600080fd5b8035906020019184602083028401116401000000008311171561093157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561099157600080fd5b8201836020820111156109a357600080fd5b803590602001918460208302840111640100000000831117156109c557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611973565b005b348015610a2257600080fd5b50610a2b611a07565b005b348015610a3957600080fd5b50610a7060048036036040811015610a5057600080fd5b810190808035906020019092919080359060200190929190505050611c8a565b005b348015610a7e57600080fd5b50610aab60048036036020811015610a9557600080fd5b8101908080359060200190929190505050611d59565b6040518082815260200191505060405180910390f35b348015610acd57600080fd5b50610ad6611d71565b6040518082815260200191505060405180910390f35b348015610af857600080fd5b50610b4760048036036040811015610b0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611d77565b005b348015610b5557600080fd5b50610b8260048036036020811015610b6c57600080fd5b8101908080359060200190929190505050611f12565b005b348015610b9057600080fd5b50610b99611f76565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610be757600080fd5b50610bf0611f9c565b604051808215151515815260200191505060405180910390f35b348015610c1657600080fd5b50610c1f611faf565b005b348015610c2d57600080fd5b50610c36612035565b6040518082815260200191505060405180910390f35b348015610c5857600080fd5b50610cbb60048036036040811015610c6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061203a565b604051808215151515815260200191505060405180910390f35b348015610ce157600080fd5b50610def600480360360a0811015610cf857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610d6957600080fd5b820183602082011115610d7b57600080fd5b80359060200191846001830284011164010000000083111715610d9d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506120ce565b005b348015610dfd57600080fd5b50610e5460048036036060811015610e1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612443565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610edd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614c23602b913960400191505060405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ff857600080fd5b806004908051906020019061100e929190614aff565b5050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b50505050509050919050565b600754341480156110da575060011515600860009054906101000a900460ff161515145b80156110f9575060001515600860019054906101000a900460ff161515145b1561117557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611166573d6000803e3d6000fd5b5061116f6124d7565b5061117a565b600080fd5b565b81518351146111d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e3f6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614d276025913960400191505060405180910390fd5b611264612679565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112aa57506112a9856112a4612679565b61203a565b5b6112ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614d4c6032913960400191505060405180910390fd5b6000611309612679565b9050611319818787878787612681565b60008090505b84518110156114ed57600085828151811061133657fe5b60200260200101519050600085838151811061134e57fe5b602002602001015190506113d5816040518060600160405280602a8152602001614da1602a91396002600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b6002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061148c816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274990919063ffffffff16565b6002600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061131f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561159d578082015181840152602081019050611582565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156115df5780820151818401526020810190506115c4565b5050505090500194505050505060405180910390a46116028187878787876127d1565b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900460ff1681565b6060815183511461169f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614df46029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156116b957600080fd5b506040519080825280602002602001820160405280156116e85781602001602082028036833780820191505090505b50905060008090505b845181101561182d57600073ffffffffffffffffffffffffffffffffffffffff1685828151811061171e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614c4e6031913960400191505060405180910390fd5b600260008583815181106117a357fe5b6020026020010151815260200190815260200160002060008683815181106117c757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482828151811061181657fe5b6020026020010181815250508060010190506116f1565b508091505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461189257600080fd5b60001515600860009054906101000a900460ff16151514156118ce576001600860016101000a81548160ff0219169083151502179055506118d3565b600080fd5b565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461192f57600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e1d6022913960400191505060405180910390fd5b611a02838383612c49565b505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a6157600080fd5b600073514910771af9ca656af840dff83e8264ecf986ca90508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b3657600080fd5b505afa158015611b4a573d6000803e3d6000fd5b505050506040513d6020811015611b6057600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611bda57600080fd5b505af1158015611bee573d6000803e3d6000fd5b505050506040513d6020811015611c0457600080fd5b8101908080519060200190929190505050611c87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f556e61626c6520746f207472616e73666572000000000000000000000000000081525060200191505060405180910390fd5b50565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0081525060200191505060405180910390fd5b611d558282612f87565b5050565b60006020528060005260406000206000915090505481565b60075481565b8173ffffffffffffffffffffffffffffffffffffffff16611d96612679565b73ffffffffffffffffffffffffffffffffffffffff161415611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614dcb6029913960400191505060405180910390fd5b8060036000611e10612679565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ebd612679565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f6c57600080fd5b8060078190555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860019054906101000a900460ff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461200957600080fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600981565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612154576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614d276025913960400191505060405180910390fd5b61215c612679565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806121a257506121a18561219c612679565b61203a565b5b6121f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614ca36029913960400191505060405180910390fd5b6000612201612679565b905061222181878761221288613060565b61221b88613060565b87612681565b61229e836040518060600160405280602a8152602001614da1602a91396002600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b6002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612355836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274990919063ffffffff16565b6002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a461243b8187878787876130d0565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e1d6022913960400191505060405180910390fd5b6124d28383836134c6565b505050565b60008060009050600a547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561257e57600080fd5b505afa158015612592573d6000803e3d6000fd5b505050506040513d60208110156125a857600080fd5b81019080805190602001909291905050501161260f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614ccc602b913960400191505060405180910390fd5b61261e600954600a54836136e2565b915033600c600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508191505090565b600033905090565b505050505050565b6000838311158290612736576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126fb5780820151818401526020810190506126e0565b50505050905090810190601f1680156127285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156127c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6127f08473ffffffffffffffffffffffffffffffffffffffff166138ed565b15612c41578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156128d45780820151818401526020810190506128b9565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156129165780820151818401526020810190506128fb565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561295557808201518184015260208101905061293a565b50505050905090810190601f1680156129825780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156129a757600080fd5b505af19250505080156129db57506040513d60208110156129c757600080fd5b810190808051906020019092919050505060015b612ba2576000604051905060008152600115612aa45760443d1015612a035760009050612aa4565b60046000803e60005160e01c6308c379a08114612a24576000915050612aa4565b60043d036004833e81513d602482011167ffffffffffffffff82111715612a5057600092505050612aa4565b808301805167ffffffffffffffff811115612a72576000945050505050612aa4565b8060208301013d8601811115612a9057600095505050505050612aa4565b601f19601f82011660405282955050505050505b80612aaf5750612b51565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b16578082015181840152602081019050612afb565b50505050905090810190601f168015612b435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614bc76034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614bfb6028913960400191505060405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614d7e6023913960400191505060405180910390fd5b8051825114612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e3f6028913960400191505060405180910390fd5b6000612d33612679565b9050612d5381856000868660405180602001604052806000815250612681565b60008090505b8351811015612e7957612e05838281518110612d7157fe5b6020026020010151604051806060016040528060248152602001614c7f6024913960026000888681518110612da257fe5b6020026020010151815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b60026000868481518110612e1557fe5b6020026020010151815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050612d59565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612f2a578082015181840152602081019050612f0f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612f6c578082015181840152602081019050612f51565b5050505090500194505050505060405180910390a450505050565b73f0d54349addcf704f77ae15b96510dea15cb795273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614cf76030913960400191505060405180910390fd5b61305c600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613900565b5050565b606080600167ffffffffffffffff8111801561307b57600080fd5b506040519080825280602002602001820160405280156130aa5781602001602082028036833780820191505090505b50905082816000815181106130bb57fe5b60200260200101818152505080915050919050565b6130ef8473ffffffffffffffffffffffffffffffffffffffff166138ed565b156134be578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156131d45780820151818401526020810190506131b9565b50505050905090810190601f1680156132015780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561322457600080fd5b505af192505050801561325857506040513d602081101561324457600080fd5b810190808051906020019092919050505060015b61341f5760006040519050600081526001156133215760443d10156132805760009050613321565b60046000803e60005160e01c6308c379a081146132a1576000915050613321565b60043d036004833e81513d602482011167ffffffffffffffff821117156132cd57600092505050613321565b808301805167ffffffffffffffff8111156132ef576000945050505050613321565b8060208301013d860181111561330d57600095505050505050613321565b601f19601f82011660405282955050505050505b8061332c57506133ce565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613393578082015181840152602081019050613378565b50505050905090810190601f1680156133c05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614bc76034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146134bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614bfb6028913960400191505060405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561354c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614d7e6023913960400191505060405180910390fd5b6000613556612679565b90506135868185600061356887613060565b61357187613060565b60405180602001604052806000815250612681565b61360382604051806060016040528060248152602001614c7f602491396002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b6002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000000000000000000000000000000000000000000085878660405160200180838152602001828152602001925050506040516020818303038152906040526040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156137f15780820151818401526020810190506137d6565b50505050905090810190601f16801561381e5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561383f57600080fd5b505af1158015613853573d6000803e3d6000fd5b505050506040513d602081101561386957600080fd5b810190808051906020019092919050505050600061389b8584306000808a815260200190815260200160002054613ef0565b90506138c3600160008088815260200190815260200160002054613f6a90919063ffffffff16565b600080878152602001908152602001600020819055506138e38582613ff2565b9150509392505050565b600080823b905060008111915050919050565b613908614b7f565b613910614b7f565b613918614b7f565b6060600567ffffffffffffffff8111801561393257600080fd5b506040519080825280602002602001820160405280156139615781602001602082028036833780820191505090505b5090506060600567ffffffffffffffff8111801561397e57600080fd5b506040519080825280602002602001820160405280156139ad5781602001602082028036833780820191505090505b5090506001816000815181106139bf57fe5b6020026020010181815250506001816001815181106139da57fe5b6020026020010181815250506001816002815181106139f557fe5b602002602001018181525050600181600381518110613a1057fe5b602002602001018181525050600181600481518110613a2b57fe5b60200260200101818152505060008690506009806103e88381613a4a57fe5b060181613a5357fe5b0686600060058110613a6157fe5b602002018181525050613a8b6103e86305f5e1008381613a7d57fe5b0681613a8557fe5b0461402b565b85600060058110613a9857fe5b602002018181525050613ac56305f5e1006402540be4008381613ab757fe5b0681613abf57fe5b0461476e565b84600060058110613ad257fe5b60200201818152505060096402540be4006509184e72a0008381613af257fe5b0681613afa57fe5b0481613b0257fe5b0686600160058110613b1057fe5b602002018181525050613b426509184e72a000670de0b6b3a76400008381613b3457fe5b0681613b3c57fe5b0461402b565b85600160058110613b4f57fe5b602002018181525050613b84670de0b6b3a764000068056bc75e2d631000008381613b7657fe5b0681613b7e57fe5b0461476e565b84600160058110613b9157fe5b602002018181525050600968056bc75e2d6310000069152d02c7e14af68000008381613bb957fe5b0681613bc157fe5b0481613bc957fe5b0686600260058110613bd757fe5b602002018181525050613c1169152d02c7e14af68000006b204fce5e3e250261100000008381613c0357fe5b0681613c0b57fe5b0461402b565b85600260058110613c1e57fe5b602002018181525050613c5b6b204fce5e3e250261100000006c0c9f2c9cd04674edea400000008381613c4d57fe5b0681613c5557fe5b0461476e565b84600260058110613c6857fe5b60200201818152505060096c0c9f2c9cd04674edea400000006d314dc6448d9338c15b0a000000008381613c9857fe5b0681613ca057fe5b0481613ca857fe5b0686600360058110613cb657fe5b602002018181525050613cf86d314dc6448d9338c15b0a000000006f4b3b4ca85a86c47a098a2240000000008381613cea57fe5b0681613cf257fe5b0461402b565b85600360058110613d0557fe5b602002018181525050613d4a6f4b3b4ca85a86c47a098a224000000000701d6329f1c35ca4bfabb9f56100000000008381613d3c57fe5b0681613d4457fe5b0461476e565b84600360058110613d5757fe5b6020020181815250506009701d6329f1c35ca4bfabb9f56100000000007172cb5bd86321e38cb6ce6682e800000000008381613d8f57fe5b0681613d9757fe5b0481613d9f57fe5b0686600460058110613dad57fe5b602002018181525050613df77172cb5bd86321e38cb6ce6682e8000000000073af298d050e4395d69670b12b7f410000000000008381613de957fe5b0681613df157fe5b0461402b565b85600460058110613e0457fe5b602002018181525050613e5173af298d050e4395d69670b12b7f4100000000000074446c3b15f9926687d2c40534fdb5640000000000008381613e4357fe5b0681613e4b57fe5b0461476e565b84600460058110613e5e57fe5b60200201818152505060008090505b6005811015613eda57848160058110613e8257fe5b6020020151600a878360058110613e9557fe5b60200201510261271060018a8560058110613eac57fe5b602002015101020101848281518110613ec157fe5b6020026020010181815250508080600101915050613e6d565b50613ee68884846147cd565b5050505050505050565b600084848484604051602001808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019450505050506040516020818303038152906040528051906020012060001c9050949350505050565b600080828401905083811015613fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008282604051602001808381526020018281526020019250505060405160208183030381529060405280519060200120905092915050565b60006104fb821161403f5760019050614769565b6109f682116140515760029050614769565b610ef182116140635760039050614769565b6113ec82116140755760049050614769565b6118e782116140875760059050614769565b611de282116140995760069050614769565b6122dd82116140ab5760079050614769565b6127d882116140bd5760089050614769565b612cd382116140cf5760099050614769565b6131ce82116140e157600a9050614769565b6136c982116140f357600b9050614769565b613bc4821161410557600c9050614769565b6140bf821161411757600d9050614769565b6145ba821161412957600e9050614769565b614ab5821161413b57600f9050614769565b614fb0821161414d5760109050614769565b6154ab821161415f5760119050614769565b6159a682116141715760129050614769565b615ea182116141835760139050614769565b61639c82116141955760149050614769565b61689782116141a75760159050614769565b616d9282116141b95760169050614769565b61728d82116141cb5760179050614769565b61778882116141dd5760189050614769565b617c8382116141ef5760199050614769565b61817e821161420157601a9050614769565b618679821161421357601b9050614769565b618b74821161422557601c9050614769565b61906f821161423757601d9050614769565b61956a821161424957601e9050614769565b619a65821161425b57601f9050614769565b619f60821161426d5760209050614769565b61a45b821161427f5760219050614769565b61a95682116142915760229050614769565b61ae5182116142a35760239050614769565b61b34c82116142b55760249050614769565b61b84782116142c75760259050614769565b61bd4282116142d95760269050614769565b61c23d82116142eb5760279050614769565b61c73882116142fd5760289050614769565b61cc33821161430f5760299050614769565b61d12e821161432157602a9050614769565b61d629821161433357602b9050614769565b61db24821161434557602c9050614769565b61e01f821161435757602d9050614769565b61e51a821161436957602e9050614769565b61ea15821161437b57602f9050614769565b61ef10821161438d5760309050614769565b61f40b821161439f5760319050614769565b61f90682116143b15760329050614769565b61fe0182116143c35760339050614769565b620102fc82116143d65760349050614769565b620107f782116143e95760359050614769565b62010cf282116143fc5760369050614769565b620111ed821161440f5760379050614769565b620116e882116144225760389050614769565b62011be382116144355760399050614769565b620120de821161444857603a9050614769565b620125d9821161445b57603b9050614769565b62012ad4821161446e57603c9050614769565b62012fcf821161448157603d9050614769565b620134ca821161449457603e9050614769565b620139c582116144a757603f9050614769565b62013ec082116144ba5760409050614769565b620143bb82116144cd5760419050614769565b620148b682116144e05760429050614769565b62014db182116144f35760439050614769565b620152ac82116145065760449050614769565b620157a782116145195760459050614769565b62015b44821161452c5760469050614769565b62015ec8821161453f5760479050614769565b6201624c82116145525760489050614769565b620165d082116145655760499050614769565b62016954821161457857604a9050614769565b62016cd8821161458b57604b9050614769565b6201705c821161459e57604c9050614769565b620173e082116145b157604d9050614769565b6201776482116145c457604e9050614769565b62017ae882116145d757604f9050614769565b62017bb082116145ea5760509050614769565b62017c7882116145fd5760519050614769565b62017d4082116146105760529050614769565b62017e0882116146235760539050614769565b62017ed082116146365760549050614769565b62017f9882116146495760559050614769565b62018060821161465c5760569050614769565b62018128821161466f5760579050614769565b620181f082116146825760589050614769565b620182b882116146955760599050614769565b6201834982116146a857605a9050614769565b620183d582116146bb57605b9050614769565b6201845782116146ce57605c9050614769565b620184d482116146e157605d9050614769565b6201854c82116146f457605e9050614769565b620185ba821161470757605f9050614769565b6201861e821161471a5760609050614769565b62018678821161472d5760619050614769565b6201869682116147405760629050614769565b6201869f8210156147545760639050614769565b6201869f8214156147685760649050614769565b5b919050565b60006032821161478157600190506147c8565b6055821161479257600290506147c8565b605f82116147a357600390506147c8565b60638210156147b557600590506147c8565b60638214156147c757600890506147c8565b5b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614853576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614e676021913960400191505060405180910390fd5b80518251146148ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e3f6028913960400191505060405180910390fd5b606060405180602001604052806000815250905060008490506148d581600087878787612681565b60008090505b84518110156149e15761496d600260008784815181106148f757fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485838151811061495757fe5b602002602001015161274990919063ffffffff16565b6002600087848151811061497d57fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806001019150506148db565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015614a92578082015181840152602081019050614a77565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015614ad4578082015181840152602081019050614ab9565b5050505090500194505050505060405180910390a4614af8816000878787876127d1565b5050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614b4057805160ff1916838001178555614b6e565b82800160010185558215614b6e579182015b82811115614b6d578251825591602001919060010190614b52565b5b509050614b7b9190614ba1565b5090565b6040518060a00160405280600590602082028036833780820191505090505090565b614bc391905b80821115614bbf576000816000905550600101614ba7565b5090565b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e74726163742077697468206661756365744f6e6c79207468652056524620436f6f7264696e61746f72206d61792063616c6c20746869732066756e6374696f6e2e455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368596f752063616e206f6e6c79206275726e20796f7572206f776e20746f6b656e732e455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a26469706673582212200b35c22db450f861c1a98c3fa9316e17b8f2375fa6a80097f2ada5c1c6a4a67964736f6c63430006060033697066733a2f2f516d563968775776733276737242563865776a665153696a4647345045704a6b4768785a426a52696134677959502f7b69647d2e6a736f6e

Deployed Bytecode

0x6080604052600436106101655760003560e01c80638dc654a2116100d1578063ce606ee01161008a578063e52c087211610064578063e52c087214610c21578063e985e9c514610c4c578063f242432a14610cd5578063f5298aca14610df157610165565b8063ce606ee014610b84578063d8f8604014610bdb578063dd9c1f2314610c0a57610165565b80638dc654a214610a1657806394985ddd14610a2d5780639e317f1214610a72578063a035b1fe14610ac1578063a22cb46514610aec578063a2b40d1914610b4957610165565b80633cbb10fa116101235780633cbb10fa14610601578063466ccac0146106585780634e1273f4146106875780635d0948421461083557806361017b001461084c5780636b20c4541461089d57610165565b8062fdd58e1461016a57806301ffc9a7146101d957806302fe53051461024b5780630e89341c146103135780631249c58b146103c75780632eb2c2d6146103d1575b600080fd5b34801561017657600080fd5b506101c36004803603604081101561018d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e56565b6040518082815260200191505060405180910390f35b3480156101e557600080fd5b50610231600480360360208110156101fc57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610f36565b604051808215151515815260200191505060405180910390f35b34801561025757600080fd5b506103116004803603602081101561026e57600080fd5b810190808035906020019064010000000081111561028b57600080fd5b82018360208201111561029d57600080fd5b803590602001918460018302840111640100000000831117156102bf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050610f9e565b005b34801561031f57600080fd5b5061034c6004803603602081101561033657600080fd5b8101908080359060200190929190505050611012565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561038c578082015181840152602081019050610371565b50505050905090810190601f1680156103b95780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103cf6110b6565b005b3480156103dd57600080fd5b506105ff600480360360a08110156103f457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019064010000000081111561045157600080fd5b82018360208201111561046357600080fd5b8035906020019184602083028401116401000000008311171561048557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156104e557600080fd5b8201836020820111156104f757600080fd5b8035906020019184602083028401116401000000008311171561051957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561057957600080fd5b82018360208201111561058b57600080fd5b803590602001918460018302840111640100000000831117156105ad57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061117c565b005b34801561060d57600080fd5b5061061661160a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561066457600080fd5b5061066d611630565b604051808215151515815260200191505060405180910390f35b34801561069357600080fd5b506107de600480360360408110156106aa57600080fd5b81019080803590602001906401000000008111156106c757600080fd5b8201836020820111156106d957600080fd5b803590602001918460208302840111640100000000831117156106fb57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561075b57600080fd5b82018360208201111561076d57600080fd5b8035906020019184602083028401116401000000008311171561078f57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611643565b6040518080602001828103825283818151815260200191508051906020019060200280838360005b83811015610821578082015181840152602081019050610806565b505050509050019250505060405180910390f35b34801561084157600080fd5b5061084a611838565b005b34801561085857600080fd5b5061089b6004803603602081101561086f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118d5565b005b3480156108a957600080fd5b50610a14600480360360608110156108c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001906401000000008111156108fd57600080fd5b82018360208201111561090f57600080fd5b8035906020019184602083028401116401000000008311171561093157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561099157600080fd5b8201836020820111156109a357600080fd5b803590602001918460208302840111640100000000831117156109c557600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050611973565b005b348015610a2257600080fd5b50610a2b611a07565b005b348015610a3957600080fd5b50610a7060048036036040811015610a5057600080fd5b810190808035906020019092919080359060200190929190505050611c8a565b005b348015610a7e57600080fd5b50610aab60048036036020811015610a9557600080fd5b8101908080359060200190929190505050611d59565b6040518082815260200191505060405180910390f35b348015610acd57600080fd5b50610ad6611d71565b6040518082815260200191505060405180910390f35b348015610af857600080fd5b50610b4760048036036040811015610b0f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611d77565b005b348015610b5557600080fd5b50610b8260048036036020811015610b6c57600080fd5b8101908080359060200190929190505050611f12565b005b348015610b9057600080fd5b50610b99611f76565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610be757600080fd5b50610bf0611f9c565b604051808215151515815260200191505060405180910390f35b348015610c1657600080fd5b50610c1f611faf565b005b348015610c2d57600080fd5b50610c36612035565b6040518082815260200191505060405180910390f35b348015610c5857600080fd5b50610cbb60048036036040811015610c6f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061203a565b604051808215151515815260200191505060405180910390f35b348015610ce157600080fd5b50610def600480360360a0811015610cf857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019092919080359060200190640100000000811115610d6957600080fd5b820183602082011115610d7b57600080fd5b80359060200191846001830284011164010000000083111715610d9d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506120ce565b005b348015610dfd57600080fd5b50610e5460048036036060811015610e1457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190505050612443565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610edd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614c23602b913960400191505060405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600060016000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ff857600080fd5b806004908051906020019061100e929190614aff565b5050565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b50505050509050919050565b600754341480156110da575060011515600860009054906101000a900460ff161515145b80156110f9575060001515600860019054906101000a900460ff161515145b1561117557600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611166573d6000803e3d6000fd5b5061116f6124d7565b5061117a565b600080fd5b565b81518351146111d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e3f6028913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561125c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614d276025913960400191505060405180910390fd5b611264612679565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806112aa57506112a9856112a4612679565b61203a565b5b6112ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614d4c6032913960400191505060405180910390fd5b6000611309612679565b9050611319818787878787612681565b60008090505b84518110156114ed57600085828151811061133657fe5b60200260200101519050600085838151811061134e57fe5b602002602001015190506113d5816040518060600160405280602a8152602001614da1602a91396002600086815260200190815260200160002060008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b6002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061148c816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274990919063ffffffff16565b6002600084815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505080600101905061131f565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561159d578082015181840152602081019050611582565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156115df5780820151818401526020810190506115c4565b5050505090500194505050505060405180910390a46116028187878787876127d1565b505050505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900460ff1681565b6060815183511461169f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614df46029913960400191505060405180910390fd5b6060835167ffffffffffffffff811180156116b957600080fd5b506040519080825280602002602001820160405280156116e85781602001602082028036833780820191505090505b50905060008090505b845181101561182d57600073ffffffffffffffffffffffffffffffffffffffff1685828151811061171e57fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff161415611793576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614c4e6031913960400191505060405180910390fd5b600260008583815181106117a357fe5b6020026020010151815260200190815260200160002060008683815181106117c757fe5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205482828151811061181657fe5b6020026020010181815250508060010190506116f1565b508091505092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461189257600080fd5b60001515600860009054906101000a900460ff16151514156118ce576001600860016101000a81548160ff0219169083151502179055506118d3565b600080fd5b565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461192f57600080fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e1d6022913960400191505060405180910390fd5b611a02838383612c49565b505050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a6157600080fd5b600073514910771af9ca656af840dff83e8264ecf986ca90508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b3657600080fd5b505afa158015611b4a573d6000803e3d6000fd5b505050506040513d6020811015611b6057600080fd5b81019080805190602001909291905050506040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015611bda57600080fd5b505af1158015611bee573d6000803e3d6000fd5b505050506040513d6020811015611c0457600080fd5b8101908080519060200190929190505050611c87576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f556e61626c6520746f207472616e73666572000000000000000000000000000081525060200191505060405180910390fd5b50565b7f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c0081525060200191505060405180910390fd5b611d558282612f87565b5050565b60006020528060005260406000206000915090505481565b60075481565b8173ffffffffffffffffffffffffffffffffffffffff16611d96612679565b73ffffffffffffffffffffffffffffffffffffffff161415611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614dcb6029913960400191505060405180910390fd5b8060036000611e10612679565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ebd612679565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051808215151515815260200191505060405180910390a35050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f6c57600080fd5b8060078190555050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860019054906101000a900460ff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461200957600080fd5b600860009054906101000a900460ff1615600860006101000a81548160ff021916908315150217905550565b600981565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612154576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180614d276025913960400191505060405180910390fd5b61215c612679565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806121a257506121a18561219c612679565b61203a565b5b6121f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614ca36029913960400191505060405180910390fd5b6000612201612679565b905061222181878761221288613060565b61221b88613060565b87612681565b61229e836040518060600160405280602a8152602001614da1602a91396002600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b6002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612355836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461274990919063ffffffff16565b6002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051808381526020018281526020019250505060405180910390a461243b8187878787876130d0565b505050505050565b3373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e1d6022913960400191505060405180910390fd5b6124d28383836134c6565b505050565b60008060009050600a547f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561257e57600080fd5b505afa158015612592573d6000803e3d6000fd5b505050506040513d60208110156125a857600080fd5b81019080805190602001909291905050501161260f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b815260200180614ccc602b913960400191505060405180910390fd5b61261e600954600a54836136e2565b915033600c600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508191505090565b600033905090565b505050505050565b6000838311158290612736576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156126fb5780820151818401526020810190506126e0565b50505050905090810190601f1680156127285780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808284019050838110156127c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6127f08473ffffffffffffffffffffffffffffffffffffffff166138ed565b15612c41578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b838110156128d45780820151818401526020810190506128b9565b50505050905001848103835286818151815260200191508051906020019060200280838360005b838110156129165780820151818401526020810190506128fb565b50505050905001848103825285818151815260200191508051906020019080838360005b8381101561295557808201518184015260208101905061293a565b50505050905090810190601f1680156129825780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b1580156129a757600080fd5b505af19250505080156129db57506040513d60208110156129c757600080fd5b810190808051906020019092919050505060015b612ba2576000604051905060008152600115612aa45760443d1015612a035760009050612aa4565b60046000803e60005160e01c6308c379a08114612a24576000915050612aa4565b60043d036004833e81513d602482011167ffffffffffffffff82111715612a5057600092505050612aa4565b808301805167ffffffffffffffff811115612a72576000945050505050612aa4565b8060208301013d8601811115612a9057600095505050505050612aa4565b601f19601f82011660405282955050505050505b80612aaf5750612b51565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612b16578082015181840152602081019050612afb565b50505050905090810190601f168015612b435780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614bc76034913960400191505060405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614bfb6028913960400191505060405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614d7e6023913960400191505060405180910390fd5b8051825114612d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e3f6028913960400191505060405180910390fd5b6000612d33612679565b9050612d5381856000868660405180602001604052806000815250612681565b60008090505b8351811015612e7957612e05838281518110612d7157fe5b6020026020010151604051806060016040528060248152602001614c7f6024913960026000888681518110612da257fe5b6020026020010151815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b60026000868481518110612e1557fe5b6020026020010151815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050612d59565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015612f2a578082015181840152602081019050612f0f565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015612f6c578082015181840152602081019050612f51565b5050505090500194505050505060405180910390a450505050565b73f0d54349addcf704f77ae15b96510dea15cb795273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461301f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614cf76030913960400191505060405180910390fd5b61305c600c600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682613900565b5050565b606080600167ffffffffffffffff8111801561307b57600080fd5b506040519080825280602002602001820160405280156130aa5781602001602082028036833780820191505090505b50905082816000815181106130bb57fe5b60200260200101818152505080915050919050565b6130ef8473ffffffffffffffffffffffffffffffffffffffff166138ed565b156134be578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156131d45780820151818401526020810190506131b9565b50505050905090810190601f1680156132015780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b15801561322457600080fd5b505af192505050801561325857506040513d602081101561324457600080fd5b810190808051906020019092919050505060015b61341f5760006040519050600081526001156133215760443d10156132805760009050613321565b60046000803e60005160e01c6308c379a081146132a1576000915050613321565b60043d036004833e81513d602482011167ffffffffffffffff821117156132cd57600092505050613321565b808301805167ffffffffffffffff8111156132ef576000945050505050613321565b8060208301013d860181111561330d57600095505050505050613321565b601f19601f82011660405282955050505050505b8061332c57506133ce565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613393578082015181840152602081019050613378565b50505050905090810190601f1680156133c05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526034815260200180614bc76034913960400191505060405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146134bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614bfb6028913960400191505060405180910390fd5b505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561354c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180614d7e6023913960400191505060405180910390fd5b6000613556612679565b90506135868185600061356887613060565b61357187613060565b60405180602001604052806000815250612681565b61360382604051806060016040528060248152602001614c7f602491396002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126899092919063ffffffff16565b6002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051808381526020018281526020019250505060405180910390a450505050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795285878660405160200180838152602001828152602001925050506040516020818303038152906040526040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156137f15780820151818401526020810190506137d6565b50505050905090810190601f16801561381e5780820380516001836020036101000a031916815260200191505b50945050505050602060405180830381600087803b15801561383f57600080fd5b505af1158015613853573d6000803e3d6000fd5b505050506040513d602081101561386957600080fd5b810190808051906020019092919050505050600061389b8584306000808a815260200190815260200160002054613ef0565b90506138c3600160008088815260200190815260200160002054613f6a90919063ffffffff16565b600080878152602001908152602001600020819055506138e38582613ff2565b9150509392505050565b600080823b905060008111915050919050565b613908614b7f565b613910614b7f565b613918614b7f565b6060600567ffffffffffffffff8111801561393257600080fd5b506040519080825280602002602001820160405280156139615781602001602082028036833780820191505090505b5090506060600567ffffffffffffffff8111801561397e57600080fd5b506040519080825280602002602001820160405280156139ad5781602001602082028036833780820191505090505b5090506001816000815181106139bf57fe5b6020026020010181815250506001816001815181106139da57fe5b6020026020010181815250506001816002815181106139f557fe5b602002602001018181525050600181600381518110613a1057fe5b602002602001018181525050600181600481518110613a2b57fe5b60200260200101818152505060008690506009806103e88381613a4a57fe5b060181613a5357fe5b0686600060058110613a6157fe5b602002018181525050613a8b6103e86305f5e1008381613a7d57fe5b0681613a8557fe5b0461402b565b85600060058110613a9857fe5b602002018181525050613ac56305f5e1006402540be4008381613ab757fe5b0681613abf57fe5b0461476e565b84600060058110613ad257fe5b60200201818152505060096402540be4006509184e72a0008381613af257fe5b0681613afa57fe5b0481613b0257fe5b0686600160058110613b1057fe5b602002018181525050613b426509184e72a000670de0b6b3a76400008381613b3457fe5b0681613b3c57fe5b0461402b565b85600160058110613b4f57fe5b602002018181525050613b84670de0b6b3a764000068056bc75e2d631000008381613b7657fe5b0681613b7e57fe5b0461476e565b84600160058110613b9157fe5b602002018181525050600968056bc75e2d6310000069152d02c7e14af68000008381613bb957fe5b0681613bc157fe5b0481613bc957fe5b0686600260058110613bd757fe5b602002018181525050613c1169152d02c7e14af68000006b204fce5e3e250261100000008381613c0357fe5b0681613c0b57fe5b0461402b565b85600260058110613c1e57fe5b602002018181525050613c5b6b204fce5e3e250261100000006c0c9f2c9cd04674edea400000008381613c4d57fe5b0681613c5557fe5b0461476e565b84600260058110613c6857fe5b60200201818152505060096c0c9f2c9cd04674edea400000006d314dc6448d9338c15b0a000000008381613c9857fe5b0681613ca057fe5b0481613ca857fe5b0686600360058110613cb657fe5b602002018181525050613cf86d314dc6448d9338c15b0a000000006f4b3b4ca85a86c47a098a2240000000008381613cea57fe5b0681613cf257fe5b0461402b565b85600360058110613d0557fe5b602002018181525050613d4a6f4b3b4ca85a86c47a098a224000000000701d6329f1c35ca4bfabb9f56100000000008381613d3c57fe5b0681613d4457fe5b0461476e565b84600360058110613d5757fe5b6020020181815250506009701d6329f1c35ca4bfabb9f56100000000007172cb5bd86321e38cb6ce6682e800000000008381613d8f57fe5b0681613d9757fe5b0481613d9f57fe5b0686600460058110613dad57fe5b602002018181525050613df77172cb5bd86321e38cb6ce6682e8000000000073af298d050e4395d69670b12b7f410000000000008381613de957fe5b0681613df157fe5b0461402b565b85600460058110613e0457fe5b602002018181525050613e5173af298d050e4395d69670b12b7f4100000000000074446c3b15f9926687d2c40534fdb5640000000000008381613e4357fe5b0681613e4b57fe5b0461476e565b84600460058110613e5e57fe5b60200201818152505060008090505b6005811015613eda57848160058110613e8257fe5b6020020151600a878360058110613e9557fe5b60200201510261271060018a8560058110613eac57fe5b602002015101020101848281518110613ec157fe5b6020026020010181815250508080600101915050613e6d565b50613ee68884846147cd565b5050505050505050565b600084848484604051602001808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019450505050506040516020818303038152906040528051906020012060001c9050949350505050565b600080828401905083811015613fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008282604051602001808381526020018281526020019250505060405160208183030381529060405280519060200120905092915050565b60006104fb821161403f5760019050614769565b6109f682116140515760029050614769565b610ef182116140635760039050614769565b6113ec82116140755760049050614769565b6118e782116140875760059050614769565b611de282116140995760069050614769565b6122dd82116140ab5760079050614769565b6127d882116140bd5760089050614769565b612cd382116140cf5760099050614769565b6131ce82116140e157600a9050614769565b6136c982116140f357600b9050614769565b613bc4821161410557600c9050614769565b6140bf821161411757600d9050614769565b6145ba821161412957600e9050614769565b614ab5821161413b57600f9050614769565b614fb0821161414d5760109050614769565b6154ab821161415f5760119050614769565b6159a682116141715760129050614769565b615ea182116141835760139050614769565b61639c82116141955760149050614769565b61689782116141a75760159050614769565b616d9282116141b95760169050614769565b61728d82116141cb5760179050614769565b61778882116141dd5760189050614769565b617c8382116141ef5760199050614769565b61817e821161420157601a9050614769565b618679821161421357601b9050614769565b618b74821161422557601c9050614769565b61906f821161423757601d9050614769565b61956a821161424957601e9050614769565b619a65821161425b57601f9050614769565b619f60821161426d5760209050614769565b61a45b821161427f5760219050614769565b61a95682116142915760229050614769565b61ae5182116142a35760239050614769565b61b34c82116142b55760249050614769565b61b84782116142c75760259050614769565b61bd4282116142d95760269050614769565b61c23d82116142eb5760279050614769565b61c73882116142fd5760289050614769565b61cc33821161430f5760299050614769565b61d12e821161432157602a9050614769565b61d629821161433357602b9050614769565b61db24821161434557602c9050614769565b61e01f821161435757602d9050614769565b61e51a821161436957602e9050614769565b61ea15821161437b57602f9050614769565b61ef10821161438d5760309050614769565b61f40b821161439f5760319050614769565b61f90682116143b15760329050614769565b61fe0182116143c35760339050614769565b620102fc82116143d65760349050614769565b620107f782116143e95760359050614769565b62010cf282116143fc5760369050614769565b620111ed821161440f5760379050614769565b620116e882116144225760389050614769565b62011be382116144355760399050614769565b620120de821161444857603a9050614769565b620125d9821161445b57603b9050614769565b62012ad4821161446e57603c9050614769565b62012fcf821161448157603d9050614769565b620134ca821161449457603e9050614769565b620139c582116144a757603f9050614769565b62013ec082116144ba5760409050614769565b620143bb82116144cd5760419050614769565b620148b682116144e05760429050614769565b62014db182116144f35760439050614769565b620152ac82116145065760449050614769565b620157a782116145195760459050614769565b62015b44821161452c5760469050614769565b62015ec8821161453f5760479050614769565b6201624c82116145525760489050614769565b620165d082116145655760499050614769565b62016954821161457857604a9050614769565b62016cd8821161458b57604b9050614769565b6201705c821161459e57604c9050614769565b620173e082116145b157604d9050614769565b6201776482116145c457604e9050614769565b62017ae882116145d757604f9050614769565b62017bb082116145ea5760509050614769565b62017c7882116145fd5760519050614769565b62017d4082116146105760529050614769565b62017e0882116146235760539050614769565b62017ed082116146365760549050614769565b62017f9882116146495760559050614769565b62018060821161465c5760569050614769565b62018128821161466f5760579050614769565b620181f082116146825760589050614769565b620182b882116146955760599050614769565b6201834982116146a857605a9050614769565b620183d582116146bb57605b9050614769565b6201845782116146ce57605c9050614769565b620184d482116146e157605d9050614769565b6201854c82116146f457605e9050614769565b620185ba821161470757605f9050614769565b6201861e821161471a5760609050614769565b62018678821161472d5760619050614769565b6201869682116147405760629050614769565b6201869f8210156147545760639050614769565b6201869f8214156147685760649050614769565b5b919050565b60006032821161478157600190506147c8565b6055821161479257600290506147c8565b605f82116147a357600390506147c8565b60638210156147b557600590506147c8565b60638214156147c757600890506147c8565b5b919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415614853576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614e676021913960400191505060405180910390fd5b80518251146148ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180614e3f6028913960400191505060405180910390fd5b606060405180602001604052806000815250905060008490506148d581600087878787612681565b60008090505b84518110156149e15761496d600260008784815181106148f757fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485838151811061495757fe5b602002602001015161274990919063ffffffff16565b6002600087848151811061497d57fe5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806001019150506148db565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b83811015614a92578082015181840152602081019050614a77565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015614ad4578082015181840152602081019050614ab9565b5050505090500194505050505060405180910390a4614af8816000878787876127d1565b5050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614b4057805160ff1916838001178555614b6e565b82800160010185558215614b6e579182015b82811115614b6d578251825591602001919060010190614b52565b5b509050614b7b9190614ba1565b5090565b6040518060a00160405280600590602082028036833780820191505090505090565b614bc391905b80821115614bbf576000816000905550600101614ba7565b5090565b9056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a2062617463682062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243313135353a206275726e20616d6f756e7420657863656564732062616c616e6365455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e74726163742077697468206661756365744f6e6c79207468652056524620436f6f7264696e61746f72206d61792063616c6c20746869732066756e6374696f6e2e455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a206275726e2066726f6d20746865207a65726f2061646472657373455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e73666572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368596f752063616e206f6e6c79206275726e20796f7572206f776e20746f6b656e732e455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a26469706673582212200b35c22db450f861c1a98c3fa9316e17b8f2375fa6a80097f2ada5c1c6a4a67964736f6c63430006060033

Deployed Bytecode Sourcemap

63828:4614:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;44363:222:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44363:222:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44363:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33442:142;;5:9:-1;2:2;;;27:1;24;17:12;2:2;33442:142:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;33442:142:0;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;68050:87;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68050:87:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;68050:87:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;68050:87:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;68050:87:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;68050:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;68050:87:0;;;;;;;;;;;;;;;:::i;:::-;;44114:98;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44114:98:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44114:98:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44114:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66105:257;;;:::i;:::-;;47034:1203;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47034:1203:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;47034:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;47034:1203:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;47034:1203:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47034:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47034:1203:0;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;47034:1203:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;47034:1203:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;47034:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47034:1203:0;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;47034:1203:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;47034:1203:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;47034:1203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;47034:1203:0;;;;;;;;;;;;;;;:::i;:::-;;63943:38;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63943:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;64015:19;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64015:19:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44751:612;;5:9:-1;2:2;;;27:1;24;17:12;2:2;44751:612:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;44751:612:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44751:612:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44751:612:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44751:612:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44751:612:0;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;44751:612:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;44751:612:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44751:612:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;44751:612:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;44751:612:0;;;;;;;;;;;;;;;;;66630:183;;5:9:-1;2:2;;;27:1;24;17:12;2:2;66630:183:0;;;:::i;:::-;;67078:144;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67078:144:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;67078:144:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;67494:222;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67494:222:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;67494:222:0;;;;;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;67494:222:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;67494:222:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;67494:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;67494:222:0;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;67494:222:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;67494:222:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;67494:222:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;67494:222:0;;;;;;;;;;;;;;;:::i;:::-;;68196:243;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68196:243:0;;;:::i;:::-;;16499:210;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16499:210:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16499:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16076:67;;5:9:-1;2:2;;;27:1;24;17:12;2:2;16076:67:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16076:67:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;63988:20;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63988:20:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45436:311;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45436:311:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45436:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66913:93;;5:9:-1;2:2;;;27:1;24;17:12;2:2;66913:93:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;66913:93:0;;;;;;;;;;;;;;;;;:::i;:::-;;63908:28;;5:9:-1;2:2;;;27:1;24;17:12;2:2;63908:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;64041:27;;5:9:-1;2:2;;;27:1;24;17:12;2:2;64041:27:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;66435:83;;5:9:-1;2:2;;;27:1;24;17:12;2:2;66435:83:0;;;:::i;:::-;;55549:38;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55549:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45819:159;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45819:159:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;45819:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46050:907;;5:9:-1;2:2;;;27:1;24;17:12;2:2;46050:907:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;46050:907:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;46050:907:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;46050:907:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46050:907:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;46050:907:0;;;;;;;;;;;;;;;:::i;:::-;;67257:192;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67257:192:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;67257:192:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44363:222;44440:7;44487:1;44468:21;;:7;:21;;;;44460:77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44555:9;:13;44565:2;44555:13;;;;;;;;;;;:22;44569:7;44555:22;;;;;;;;;;;;;;;;44548:29;;44363:222;;;;:::o;33442:142::-;33519:4;33543:20;:33;33564:11;33543:33;;;;;;;;;;;;;;;;;;;;;;;;;;;33536:40;;33442:142;;;:::o;68050:87::-;64985:13;;;;;;;;;;;64971:27;;:10;:27;;;64963:36;;12:1:-1;9;2:12;64963:36:0;68123:6:::1;68116:4;:13;;;;;;;;;;;;:::i;:::-;;68050:87:::0;:::o;44114:98::-;44167:13;44200:4;44193:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44114:98;;;:::o;66105:257::-;66166:5;;66153:9;:18;:37;;;;;66186:4;66175:15;;:7;;;;;;;;;;;:15;;;66153:37;:65;;;;;66213:5;66194:24;;:15;;;;;;;;;;;:24;;;66153:65;66149:206;;;66235:15;;;;;;;;;;;:24;;:35;66260:9;66235:35;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;66235:35:0;66285:17;:15;:17::i;:::-;;66149:206;;;12:1:-1;9;2:12;66149:206:0;66105:257::o;47034:1203::-;47282:7;:14;47268:3;:10;:28;47260:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47374:1;47360:16;;:2;:16;;;;47352:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47459:12;:10;:12::i;:::-;47451:20;;:4;:20;;;:60;;;;47475:36;47492:4;47498:12;:10;:12::i;:::-;47475:16;:36::i;:::-;47451:60;47429:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47602:16;47621:12;:10;:12::i;:::-;47602:31;;47646:60;47667:8;47677:4;47683:2;47687:3;47692:7;47701:4;47646:20;:60::i;:::-;47724:9;47736:1;47724:13;;47719:358;47743:3;:10;47739:1;:14;47719:358;;;47775:10;47788:3;47792:1;47788:6;;;;;;;;;;;;;;47775:19;;47809:14;47826:7;47834:1;47826:10;;;;;;;;;;;;;;47809:27;;47875:126;47917:6;47875:126;;;;;;;;;;;;;;;;;:9;:13;47885:2;47875:13;;;;;;;;;;;:19;47889:4;47875:19;;;;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;47853:9;:13;47863:2;47853:13;;;;;;;;;;;:19;47867:4;47853:19;;;;;;;;;;;;;;;:148;;;;48036:29;48058:6;48036:9;:13;48046:2;48036:13;;;;;;;;;;;:17;48050:2;48036:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;48016:9;:13;48026:2;48016:13;;;;;;;;;;;:17;48030:2;48016:17;;;;;;;;;;;;;;;:49;;;;47719:358;;47755:3;;;;;47719:358;;;;48124:2;48094:47;;48118:4;48094:47;;48108:8;48094:47;;;48128:3;48133:7;48094:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48094:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;48094:47:0;;;;;;;;;;;;;;;;;;;48154:75;48190:8;48200:4;48206:2;48210:3;48215:7;48224:4;48154:35;:75::i;:::-;47034:1203;;;;;;:::o;63943:38::-;;;;;;;;;;;;;:::o;64015:19::-;;;;;;;;;;;;;:::o;44751:612::-;44898:16;44954:3;:10;44935:8;:15;:29;44927:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45023:30;45070:8;:15;45056:30;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;45056:30:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;45056:30:0;;;;45023:63;;45104:9;45116:1;45104:13;;45099:224;45123:8;:15;45119:1;:19;45099:224;;;45191:1;45168:25;;:8;45177:1;45168:11;;;;;;;;;;;;;;:25;;;;45160:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45281:9;:17;45291:3;45295:1;45291:6;;;;;;;;;;;;;;45281:17;;;;;;;;;;;:30;45299:8;45308:1;45299:11;;;;;;;;;;;;;;45281:30;;;;;;;;;;;;;;;;45262:13;45276:1;45262:16;;;;;;;;;;;;;:49;;;;;45140:3;;;;;45099:224;;;;45342:13;45335:20;;;44751:612;;;;:::o;66630:183::-;64985:13;;;;;;;;;;;64971:27;;:10;:27;;;64963:36;;12:1:-1;9;2:12;64963:36:0;66709:5:::1;66698:16;;:7;;;;;;;;;;;:16;;;66694:112;;;66749:4;66731:15;;:22;;;;;;;;;;;;;;;;;;66694:112;;;12:1:-1;9::::0;2:12:::1;66694:112:0;66630:183::o:0;67078:144::-;64985:13;;;;;;;;;;;64971:27;;:10;:27;;;64963:36;;12:1:-1;9;2:12;64963:36:0;67195:19:::1;67177:15;;:37;;;;;;;;;;;;;;;;;;67078:144:::0;:::o;67494:222::-;67615:10;67604:21;;:7;:21;;;67596:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67675:33;67686:7;67695:3;67700:7;67675:10;:33::i;:::-;67494:222;;;:::o;68196:243::-;64985:13;;;;;;;;;;;64971:27;;:10;:27;;;64963:36;;12:1:-1;9;2:12;64963:36:0;68244:23:::1;68289:42;68244:88;;68347:4;:13;;;68361:15;;;;;;;;;;;68378:4;:14;;;68401:4;68378:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;68378:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;68378:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;68378:29:0;;;;;;;;;;;;;;;;68347:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;68347:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;68347:61:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;68347:61:0;;;;;;;;;;;;;;;;68339:92;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;65010:1;68196:243::o:0;16499:210::-;16606:14;16592:28;;:10;:28;;;16584:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16663:40;16681:9;16692:10;16663:17;:40::i;:::-;16499:210;;:::o;16076:67::-;;;;;;;;;;;;;;;;;:::o;63988:20::-;;;;:::o;45436:311::-;45555:8;45539:24;;:12;:10;:12::i;:::-;:24;;;;45531:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45667:8;45622:18;:32;45641:12;:10;:12::i;:::-;45622:32;;;;;;;;;;;;;;;:42;45655:8;45622:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45720:8;45691:48;;45706:12;:10;:12::i;:::-;45691:48;;;45730:8;45691:48;;;;;;;;;;;;;;;;;;;;;;45436:311;;:::o;66913:93::-;64985:13;;;;;;;;;;;64971:27;;:10;:27;;;64963:36;;12:1:-1;9;2:12;64963:36:0;66990:8:::1;66982:5;:16;;;;66913:93:::0;:::o;63908:28::-;;;;;;;;;;;;;:::o;64041:27::-;;;;;;;;;;;;;:::o;66435:83::-;64985:13;;;;;;;;;;;64971:27;;:10;:27;;;64963:36;;12:1:-1;9;2:12;64963:36:0;66503:7:::1;;;;;;;;;;;66502:8;66492:7;;:18;;;;;;;;;;;;;;;;;;66435:83::o:0;55549:38::-;55586:1;55549:38;:::o;45819:159::-;45909:4;45933:18;:27;45952:7;45933:27;;;;;;;;;;;;;;;:37;45961:8;45933:37;;;;;;;;;;;;;;;;;;;;;;;;;45926:44;;45819:159;;;;:::o;46050:907::-;46273:1;46259:16;;:2;:16;;;;46251:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46358:12;:10;:12::i;:::-;46350:20;;:4;:20;;;:60;;;;46374:36;46391:4;46397:12;:10;:12::i;:::-;46374:16;:36::i;:::-;46350:60;46328:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46492:16;46511:12;:10;:12::i;:::-;46492:31;;46536:96;46557:8;46567:4;46573:2;46577:21;46595:2;46577:17;:21::i;:::-;46600:25;46618:6;46600:17;:25::i;:::-;46627:4;46536:20;:96::i;:::-;46667:77;46691:6;46667:77;;;;;;;;;;;;;;;;;:9;:13;46677:2;46667:13;;;;;;;;;;;:19;46681:4;46667:19;;;;;;;;;;;;;;;;:23;;:77;;;;;:::i;:::-;46645:9;:13;46655:2;46645:13;;;;;;;;;;;:19;46659:4;46645:19;;;;;;;;;;;;;;;:99;;;;46775:29;46797:6;46775:9;:13;46785:2;46775:13;;;;;;;;;;;:17;46789:2;46775:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;46755:9;:13;46765:2;46755:13;;;;;;;;;;;:17;46769:2;46755:17;;;;;;;;;;;;;;;:49;;;;46853:2;46822:46;;46847:4;46822:46;;46837:8;46822:46;;;46857:2;46861:6;46822:46;;;;;;;;;;;;;;;;;;;;;;;;46881:68;46912:8;46922:4;46928:2;46932;46936:6;46944:4;46881:30;:68::i;:::-;46050:907;;;;;;:::o;67257:192::-;67355:10;67344:21;;:7;:21;;;67336:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67415:26;67421:7;67430:2;67434:6;67415:5;:26::i;:::-;67257:192;;;:::o;65219:358::-;65263:17;65293:24;65320:1;65293:28;;65372:3;;65340:4;:14;;;65363:4;65340:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;65340:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;65340:29:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;65340:29:0;;;;;;;;;;;;;;;;:35;65332:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65446:49;65464:7;;65473:3;;65478:16;65446:17;:49::i;:::-;65434:61;;65532:10;65506:12;:23;65519:9;65506:23;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;65560:9;65553:16;;;65219:358;:::o;31050:106::-;31103:15;31138:10;31131:17;;31050:106;:::o;52944:226::-;;;;;;;:::o;26769:192::-;26855:7;26888:1;26883;:6;;26891:12;26875:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26875:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26915:9;26931:1;26927;:5;26915:17;;26952:1;26945:8;;;26769:192;;;;;:::o;25866:181::-;25924:7;25944:9;25960:1;25956;:5;25944:17;;25985:1;25980;:6;;25972:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26038:1;26031:8;;;25866:181;;;;:::o;53938:789::-;54183:15;:2;:13;;;:15::i;:::-;54179:541;;;54236:2;54219:43;;;54263:8;54273:4;54279:3;54284:7;54293:4;54219:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54219:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54219:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54219:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54219:79:0;;;;;;;;;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;54219:79:0;;;;;;;;;;;;;;;;;;54215:494;;;20:4:-1;14:11;6:19;;43:1;37:4;30:15;57:1;50:730;;;93:4;75:16;72:26;69:2;;;109:1;101:9;;111:5;;69:2;145:1;142;139;124:23;179:1;173:8;168:3;164:18;206:10;201:3;198:19;188:2;;229:1;221:9;;231:5;;;188:2;290:1;272:16;268:24;265:1;259:4;244:49;319:4;313:11;403:16;396:4;388:6;384:17;381:39;354:18;346:6;343:30;333:94;330:2;;;444:1;436:9;;452:5;;;;330:2;491:6;485:4;481:17;524:3;518:10;548:18;540:6;537:30;534:2;;;578:1;570:9;;580:5;;;;;;534:2;624:6;617:4;612:3;608:14;604:27;658:16;652:4;648:27;643:3;640:36;637:2;;;687:1;679:9;;689:5;;;;;;;637:2;739:4;735:9;728:4;723:3;719:14;715:30;709:4;702:44;760:3;752:11;;769:5;;;;;50:730;54215:494:0;;;;;;;54582:6;54575:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;54575::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54215:494;54631:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54215:494;54359:52;;;54347:64;;;:8;:64;;;;54343:163;;54436:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54343:163;54299:222;54179:541;53938:789;;;;;;:::o;51267:721::-;51407:1;51388:21;;:7;:21;;;;51380:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51482:7;:14;51468:3;:10;:28;51460:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51554:16;51573:12;:10;:12::i;:::-;51554:31;;51598:69;51619:8;51629:7;51646:1;51650:3;51655:7;51598:69;;;;;;;;;;;;:20;:69::i;:::-;51685:6;51694:1;51685:10;;51680:225;51701:3;:10;51697:1;:14;51680:225;;;51762:131;51811:7;51819:1;51811:10;;;;;;;;;;;;;;51762:131;;;;;;;;;;;;;;;;;:9;:17;51772:3;51776:1;51772:6;;;;;;;;;;;;;;51762:17;;;;;;;;;;;:26;51780:7;51762:26;;;;;;;;;;;;;;;;:30;;:131;;;;;:::i;:::-;51733:9;:17;51743:3;51747:1;51743:6;;;;;;;;;;;;;;51733:17;;;;;;;;;;;:26;51751:7;51733:26;;;;;;;;;;;;;;;:160;;;;51713:3;;;;;;;51680:225;;;;51963:1;51922:58;;51946:7;51922:58;;51936:8;51922:58;;;51967:3;51972:7;51922:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51922:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;51922:58:0;;;;;;;;;;;;;;;;;;;51267:721;;;;:::o;65687:282::-;65804:42;65790:56;;:10;:56;;;65782:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65910:49;65923:12;:23;65936:9;65923:23;;;;;;;;;;;;;;;;;;;;;65948:10;65910:12;:49::i;:::-;65687:282;;:::o;54735:197::-;54800:16;54829:22;54868:1;54854:16;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54854:16:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;54854:16:0;;;;54829:41;;54892:7;54881:5;54887:1;54881:8;;;;;;;;;;;;;:18;;;;;54919:5;54912:12;;;54735:197;;;:::o;53178:752::-;53398:15;:2;:13;;;:15::i;:::-;53394:529;;;53451:2;53434:38;;;53473:8;53483:4;53489:2;53493:6;53501:4;53434:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;53434:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53434:72:0;;;;;;;;;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;53434:72:0;;;;;;;;;;;;;;;;;;53430:482;;;20:4:-1;14:11;6:19;;43:1;37:4;30:15;57:1;50:730;;;93:4;75:16;72:26;69:2;;;109:1;101:9;;111:5;;69:2;145:1;142;139;124:23;179:1;173:8;168:3;164:18;206:10;201:3;198:19;188:2;;229:1;221:9;;231:5;;;188:2;290:1;272:16;268:24;265:1;259:4;244:49;319:4;313:11;403:16;396:4;388:6;384:17;381:39;354:18;346:6;343:30;333:94;330:2;;;444:1;436:9;;452:5;;;;330:2;491:6;485:4;481:17;524:3;518:10;548:18;540:6;537:30;534:2;;;578:1;570:9;;580:5;;;;;;534:2;624:6;617:4;612:3;608:14;604:27;658:16;652:4;648:27;643:3;640:36;637:2;;;687:1;679:9;;689:5;;;;;;;637:2;739:4;735:9;728:4;723:3;719:14;715:30;709:4;702:44;760:3;752:11;;769:5;;;;;50:730;53430:482:0;;;;;;;53785:6;53778:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;53778::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53430:482;53834:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53430:482;53567:47;;;53555:59;;;:8;:59;;;;53551:158;;53639:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53551:158;53507:217;53394:529;53178:752;;;;;;:::o;50513:551::-;50628:1;50609:21;;:7;:21;;;;50601:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50683:16;50702:12;:10;:12::i;:::-;50683:31;;50727:105;50748:8;50758:7;50775:1;50779:21;50797:2;50779:17;:21::i;:::-;50802:25;50820:6;50802:17;:25::i;:::-;50727:105;;;;;;;;;;;;:20;:105::i;:::-;50870:111;50911:6;50870:111;;;;;;;;;;;;;;;;;:9;:13;50880:2;50870:13;;;;;;;;;;;:22;50884:7;50870:22;;;;;;;;;;;;;;;;:26;;:111;;;;;:::i;:::-;50845:9;:13;50855:2;50845:13;;;;;;;;;;;:22;50859:7;50845:22;;;;;;;;;;;;;;;:136;;;;51041:1;50999:57;;51024:7;50999:57;;51014:8;50999:57;;;51045:2;51049:6;50999:57;;;;;;;;;;;;;;;;;;;;;;;;50513:551;;;;:::o;14828:995::-;14925:17;14954:4;:20;;;14975:14;14991:4;15008:8;15018:5;14997:27;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;14997:27:0;;;14954:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;14954:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;14954:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;14954:71:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14954:71:0;;;;;;;;;;;;;;;;;15275:15;15294:66;15311:8;15321:5;15336:4;15343:6;:16;15350:8;15343:16;;;;;;;;;;;;15294;:66::i;:::-;15275:85;;15748:23;15769:1;15748:6;:16;15755:8;15748:16;;;;;;;;;;;;:20;;:23;;;;:::i;:::-;15729:6;:16;15736:8;15729:16;;;;;;;;;;;:42;;;;15785:32;15799:8;15809:7;15785:13;:32::i;:::-;15778:39;;;14828:995;;;;;:::o;17582:422::-;17642:4;17850:12;17961:7;17949:20;17941:28;;17995:1;17988:4;:8;17981:15;;;17582:422;;;:::o;60801:2872::-;60893:22;;:::i;:::-;60926:25;;:::i;:::-;60962:29;;:::i;:::-;61002:25;61044:1;61030:16;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61030:16:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;61030:16:0;;;;61002:44;;61057:24;61098:1;61084:16;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;61084:16:0;;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;61084:16:0;;;;61057:43;;61124:1;61111:7;61119:1;61111:10;;;;;;;;;;;;;:14;;;;;61149:1;61136:7;61144:1;61136:10;;;;;;;;;;;;;:14;;;;;61174:1;61161:7;61169:1;61161:10;;;;;;;;;;;;;:14;;;;;61199:1;61186:7;61194:1;61186:10;;;;;;;;;;;;;:14;;;;;61224:1;61211:7;61219:1;61211:10;;;;;;;;;;;;;:14;;;;;61352:20;61375:25;61352:48;;55586:1;;61620:7;61605:12;:22;;;;;;:35;61604:50;;;;;;61594:4;61599:1;61594:7;;;;;;;;;;:60;;;;;61678:48;61717:7;61707;61692:12;:22;;;;;;:32;;;;;;61678:12;:48::i;:::-;61665:7;61673:1;61665:10;;;;;;;;;;:61;;;;;61754:53;61798:7;61787:8;61772:12;:23;;;;;;:33;;;;;;61754:16;:53::i;:::-;61737:11;61749:1;61737:14;;;;;;;;;;:70;;;;;55586:1;61882:8;61871;61856:12;:23;;;;;;:34;;;;;;61855:49;;;;;;61845:4;61850:1;61845:7;;;;;;;;;;:59;;;;;61928:50;61968:8;61957;61942:12;:23;;;;;;:34;;;;;;61928:12;:50::i;:::-;61915:7;61923:1;61915:10;;;;;;;;;;:63;;;;;62006:54;62050:8;62039;62024:12;:23;;;;;;:34;;;;;;62006:16;:54::i;:::-;61989:11;62001:1;61989:14;;;;;;;;;;:71;;;;;55586:1;62135:8;62124;62109:12;:23;;;;;;:34;;;;;;62108:49;;;;;;62098:4;62103:1;62098:7;;;;;;;;;;:59;;;;;62181:50;62221:8;62210;62195:12;:23;;;;;;:34;;;;;;62181:12;:50::i;:::-;62168:7;62176:1;62168:10;;;;;;;;;;:63;;;;;62259:54;62303:8;62292;62277:12;:23;;;;;;:34;;;;;;62259:16;:54::i;:::-;62242:11;62254:1;62242:14;;;;;;;;;;:71;;;;;55586:1;62388:8;62377;62362:12;:23;;;;;;:34;;;;;;62361:49;;;;;;62351:4;62356:1;62351:7;;;;;;;;;;:59;;;;;62434:50;62474:8;62463;62448:12;:23;;;;;;:34;;;;;;62434:12;:50::i;:::-;62421:7;62429:1;62421:10;;;;;;;;;;:63;;;;;62512:54;62556:8;62545;62530:12;:23;;;;;;:34;;;;;;62512:16;:54::i;:::-;62495:11;62507:1;62495:14;;;;;;;;;;:71;;;;;55586:1;62641:8;62630;62615:12;:23;;;;;;:34;;;;;;62614:49;;;;;;62604:4;62609:1;62604:7;;;;;;;;;;:59;;;;;62687:50;62727:8;62716;62701:12;:23;;;;;;:34;;;;;;62687:12;:50::i;:::-;62674:7;62682:1;62674:10;;;;;;;;;;:63;;;;;62765:54;62809:8;62798;62783:12;:23;;;;;;:34;;;;;;62765:16;:54::i;:::-;62748:11;62760:1;62748:14;;;;;;;;;;:71;;;;;63488:6;63497:1;63488:10;;63483:134;63504:1;63500;:5;63483:134;;;63591:11;63603:1;63591:14;;;;;;;;;;;63584:2;63571:7;63579:1;63571:10;;;;;;;;;;;:15;63559:7;63554:1;63544:4;63549:1;63544:7;;;;;;;;;;;:11;63543:23;63542:45;63541:64;63527:8;63536:1;63527:11;;;;;;;;;;;;;:78;;;;;63507:3;;;;;;;63483:134;;;;63629:36;63640:5;63647:8;63657:7;63629:10;:36::i;:::-;60801:2872;;;;;;;;:::o;3445:236::-;3577:7;3633:8;3643:9;3654:10;3666:6;3622:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;3622:51:0;;;3612:62;;;;;;3604:71;;3596:79;;3445:236;;;;;;:::o;6456:167::-;6514:7;6530:9;6546:1;6542;:5;6530:17;;6567:1;6562;:6;;6554:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6616:1;6609:8;;;6456:167;;;;:::o;4072:174::-;4165:7;4215:8;4225:13;4198:41;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;4198:41:0;;;4188:52;;;;;;4181:59;;4072:174;;;;:::o;55707:4555::-;55766:7;55799:4;55790:5;:13;55786:4468;;55812:1;55805:8;;;;55786:4468;55842:4;55833:5;:13;55829:4425;;55855:1;55848:8;;;;55829:4425;55885:4;55876:5;:13;55872:4382;;55898:1;55891:8;;;;55872:4382;55928:4;55919:5;:13;55915:4339;;55941:1;55934:8;;;;55915:4339;55971:4;55962:5;:13;55958:4296;;55984:1;55977:8;;;;55958:4296;56014:4;56005:5;:13;56001:4253;;56027:1;56020:8;;;;56001:4253;56057:4;56048:5;:13;56044:4210;;56070:1;56063:8;;;;56044:4210;56100:5;56091;:14;56087:4167;;56114:1;56107:8;;;;56087:4167;56144:5;56135;:14;56131:4123;;56158:1;56151:8;;;;56131:4123;56188:5;56179;:14;56175:4079;;56202:2;56195:9;;;;56175:4079;56233:5;56224;:14;56220:4034;;56247:2;56240:9;;;;56220:4034;56278:5;56269;:14;56265:3989;;56292:2;56285:9;;;;56265:3989;56323:5;56314;:14;56310:3944;;56337:2;56330:9;;;;56310:3944;56368:5;56359;:14;56355:3899;;56382:2;56375:9;;;;56355:3899;56413:5;56404;:14;56400:3854;;56427:2;56420:9;;;;56400:3854;56458:5;56449;:14;56445:3809;;56472:2;56465:9;;;;56445:3809;56503:5;56494;:14;56490:3764;;56517:2;56510:9;;;;56490:3764;56548:5;56539;:14;56535:3719;;56562:2;56555:9;;;;56535:3719;56593:5;56584;:14;56580:3674;;56607:2;56600:9;;;;56580:3674;56638:5;56629;:14;56625:3629;;56652:2;56645:9;;;;56625:3629;56683:5;56674;:14;56670:3584;;56697:2;56690:9;;;;56670:3584;56728:5;56719;:14;56715:3539;;56742:2;56735:9;;;;56715:3539;56773:5;56764;:14;56760:3494;;56787:2;56780:9;;;;56760:3494;56818:5;56809;:14;56805:3449;;56832:2;56825:9;;;;56805:3449;56863:5;56854;:14;56850:3404;;56877:2;56870:9;;;;56850:3404;56908:5;56899;:14;56895:3359;;56922:2;56915:9;;;;56895:3359;56953:5;56944;:14;56940:3314;;56967:2;56960:9;;;;56940:3314;56998:5;56989;:14;56985:3269;;57012:2;57005:9;;;;56985:3269;57043:5;57034;:14;57030:3224;;57057:2;57050:9;;;;57030:3224;57088:5;57079;:14;57075:3179;;57102:2;57095:9;;;;57075:3179;57133:5;57124;:14;57120:3134;;57147:2;57140:9;;;;57120:3134;57178:5;57169;:14;57165:3089;;57192:2;57185:9;;;;57165:3089;57223:5;57214;:14;57210:3044;;57237:2;57230:9;;;;57210:3044;57268:5;57259;:14;57255:2999;;57282:2;57275:9;;;;57255:2999;57313:5;57304;:14;57300:2954;;57327:2;57320:9;;;;57300:2954;57358:5;57349;:14;57345:2909;;57372:2;57365:9;;;;57345:2909;57403:5;57394;:14;57390:2864;;57417:2;57410:9;;;;57390:2864;57448:5;57439;:14;57435:2819;;57462:2;57455:9;;;;57435:2819;57493:5;57484;:14;57480:2774;;57507:2;57500:9;;;;57480:2774;57538:5;57529;:14;57525:2729;;57552:2;57545:9;;;;57525:2729;57583:5;57574;:14;57570:2684;;57597:2;57590:9;;;;57570:2684;57628:5;57619;:14;57615:2639;;57642:2;57635:9;;;;57615:2639;57673:5;57664;:14;57660:2594;;57687:2;57680:9;;;;57660:2594;57718:5;57709;:14;57705:2549;;57732:2;57725:9;;;;57705:2549;57763:5;57754;:14;57750:2504;;57777:2;57770:9;;;;57750:2504;57808:5;57799;:14;57795:2459;;57822:2;57815:9;;;;57795:2459;57853:5;57844;:14;57840:2414;;57867:2;57860:9;;;;57840:2414;57898:5;57889;:14;57885:2369;;57912:2;57905:9;;;;57885:2369;57943:5;57934;:14;57930:2324;;57957:2;57950:9;;;;57930:2324;57988:5;57979;:14;57975:2279;;58002:2;57995:9;;;;57975:2279;58033:5;58024;:14;58020:2234;;58047:2;58040:9;;;;58020:2234;58078:5;58069;:14;58065:2189;;58092:2;58085:9;;;;58065:2189;58123:5;58114;:14;58110:2144;;58137:2;58130:9;;;;58110:2144;58168:5;58159;:14;58155:2099;;58182:2;58175:9;;;;58155:2099;58213:5;58204;:14;58200:2054;;58227:2;58220:9;;;;58200:2054;58258:5;58249;:14;58245:2009;;58272:2;58265:9;;;;58245:2009;58303:5;58294;:14;58290:1964;;58317:2;58310:9;;;;58290:1964;58348:5;58339;:14;58335:1919;;58362:2;58355:9;;;;58335:1919;58393:5;58384;:14;58380:1874;;58407:2;58400:9;;;;58380:1874;58438:5;58429;:14;58425:1829;;58452:2;58445:9;;;;58425:1829;58483:5;58474;:14;58470:1784;;58497:2;58490:9;;;;58470:1784;58528:5;58519;:14;58515:1739;;58542:2;58535:9;;;;58515:1739;58573:5;58564;:14;58560:1694;;58587:2;58580:9;;;;58560:1694;58618:5;58609;:14;58605:1649;;58632:2;58625:9;;;;58605:1649;58663:5;58654;:14;58650:1604;;58677:2;58670:9;;;;58650:1604;58708:5;58699;:14;58695:1559;;58722:2;58715:9;;;;58695:1559;58753:5;58744;:14;58740:1514;;58767:2;58760:9;;;;58740:1514;58798:5;58789;:14;58785:1469;;58812:2;58805:9;;;;58785:1469;58843:5;58834;:14;58830:1424;;58857:2;58850:9;;;;58830:1424;58888:5;58879;:14;58875:1379;;58902:2;58895:9;;;;58875:1379;58933:5;58924;:14;58920:1334;;58947:2;58940:9;;;;58920:1334;58978:5;58969;:14;58965:1289;;58992:2;58985:9;;;;58965:1289;59023:5;59014;:14;59010:1244;;59037:2;59030:9;;;;59010:1244;59068:5;59059;:14;59055:1199;;59082:2;59075:9;;;;59055:1199;59113:5;59104;:14;59100:1154;;59127:2;59120:9;;;;59100:1154;59158:5;59149;:14;59145:1109;;59172:2;59165:9;;;;59145:1109;59203:5;59194;:14;59190:1064;;59217:2;59210:9;;;;59190:1064;59248:5;59239;:14;59235:1019;;59262:2;59255:9;;;;59235:1019;59293:5;59284;:14;59280:974;;59307:2;59300:9;;;;59280:974;59338:5;59329;:14;59325:929;;59352:2;59345:9;;;;59325:929;59383:5;59374;:14;59370:884;;59397:2;59390:9;;;;59370:884;59428:5;59419;:14;59415:839;;59442:2;59435:9;;;;59415:839;59473:5;59464;:14;59460:794;;59487:2;59480:9;;;;59460:794;59518:5;59509;:14;59505:749;;59532:2;59525:9;;;;59505:749;59563:5;59554;:14;59550:704;;59577:2;59570:9;;;;59550:704;59608:5;59599;:14;59595:659;;59622:2;59615:9;;;;59595:659;59653:5;59644;:14;59640:614;;59667:2;59660:9;;;;59640:614;59698:5;59689;:14;59685:569;;59712:2;59705:9;;;;59685:569;59743:5;59734;:14;59730:524;;59757:2;59750:9;;;;59730:524;59788:5;59779;:14;59775:479;;59802:2;59795:9;;;;59775:479;59833:5;59824;:14;59820:434;;59847:2;59840:9;;;;59820:434;59878:5;59869;:14;59865:389;;59892:2;59885:9;;;;59865:389;59923:5;59914;:14;59910:344;;59937:2;59930:9;;;;59910:344;59968:5;59959;:14;59955:299;;59982:2;59975:9;;;;59955:299;60013:5;60004;:14;60000:254;;60027:2;60020:9;;;;60000:254;60058:5;60049;:14;60045:209;;60072:2;60065:9;;;;60045:209;60103:5;60094;:14;60090:164;;60117:2;60110:9;;;;60090:164;60148:5;60139;:14;60135:119;;60162:2;60155:9;;;;60135:119;60192:5;60184;:13;60180:74;;;60206:2;60199:9;;;;60180:74;60237:5;60228;:14;60224:30;;;60251:3;60244:10;;;;60224:30;55707:4555;;;;:::o;60381:279::-;60444:7;60477:2;60468:5;:11;60464:188;;60488:1;60481:8;;;;60464:188;60518:2;60509:5;:11;60505:147;;60529:1;60522:8;;;;60505:147;60559:2;60550:5;:11;60546:106;;60570:1;60563:8;;;;60546:106;60599:2;60591:5;:10;60587:65;;;60610:1;60603:8;;;;60587:65;60640:2;60631:5;:11;60627:25;;;60651:1;60644:8;;;;60627:25;60381:279;;;;:::o;49535:719::-;49665:1;49651:16;;:2;:16;;;;49643:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49738:7;:14;49724:3;:10;:28;49716:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49808:17;:22;;;;;;;;;;;;;;49843:16;49862:2;49843:21;;49877:66;49898:8;49916:1;49920:2;49924:3;49929:7;49938:4;49877:20;:66::i;:::-;49961:6;49970:1;49961:10;;49956:126;49977:3;:10;49973:1;:14;49956:126;;;50033:37;50048:9;:17;50058:3;50062:1;50058:6;;;;;;;;;;;;;;50048:17;;;;;;;;;;;:21;50066:2;50048:21;;;;;;;;;;;;;;;;50033:7;50041:1;50033:10;;;;;;;;;;;;;;:14;;:37;;;;:::i;:::-;50009:9;:17;50019:3;50023:1;50019:6;;;;;;;;;;;;;;50009:17;;;;;;;;;;;:21;50027:2;50009:21;;;;;;;;;;;;;;;:61;;;;49989:3;;;;;;;49956:126;;;;50135:2;50099:53;;50131:1;50099:53;;50113:8;50099:53;;;50139:3;50144:7;50099:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;50099:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;50099:53:0;;;;;;;;;;;;;;;;;;;50165:81;50201:8;50219:1;50223:2;50227:3;50232:7;50241:4;50165:35;:81::i;:::-;49535:719;;;;;:::o;63828:4614::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;29:2:-1;21:6;17:15;125:4;109:14;101:6;88:42;156:4;148:6;144:17;134:27;;0:165;63828:4614:0;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://0b35c22db450f861c1a98c3fa9316e17b8f2375fa6a80097f2ada5c1c6a4a679
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.