ETH Price: $3,250.86 (+2.14%)
Gas: 1 Gwei

Contract

0x354d28d197c8bE69fFa19267Ac68F49eB992c8bb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Initialize179899522023-08-25 6:34:11335 days ago1692945251IN
0x354d28d1...eB992c8bb
0 ETH0.006849525
0x60806040179899092023-08-25 6:25:35335 days ago1692944735IN
 Create: CoinBridgeToken
0 ETH0.127018725

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CoinBridgeToken

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-07
*/

// File: contracts/access/Roles.sol

/*
    Copyright (c) 2016-2019 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.
*/

pragma solidity 0.6.2;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: @openzeppelin/contracts-ethereum-package/contracts/Initializable.sol

pragma solidity >=0.4.24 <0.7.0;


/**
 * @title Initializable
 *
 * @dev Helper contract to support initializer functions. To use it, replace
 * the constructor with a function that has the `initializer` modifier.
 * WARNING: Unlike constructors, initializer functions must be manually
 * invoked. This applies both to deploying an Initializable contract, as well
 * as extending an Initializable contract via inheritance.
 * WARNING: When used with inheritance, manual care must be taken to not invoke
 * a parent initializer twice, or ensure that all initializers are idempotent,
 * because this is not dealt with automatically as with constructors.
 */
contract Initializable {

  /**
   * @dev Indicates that the contract has been initialized.
   */
  bool private initialized;

  /**
   * @dev Indicates that the contract is in the process of being initialized.
   */
  bool private initializing;

  /**
   * @dev Modifier to use in the initializer function of a contract.
   */
  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool isTopLevelCall = !initializing;
    if (isTopLevelCall) {
      initializing = true;
      initialized = true;
    }

    _;

    if (isTopLevelCall) {
      initializing = false;
    }
  }

  /// @dev Returns true if and only if the function is running in the constructor
  function isConstructor() private view returns (bool) {
    // extcodesize checks the size of the code stored in an address, and
    // address returns the current address. Since the code is still not
    // deployed when running a constructor, any checks on its code size will
    // yield zero, making it an effective way to detect if a contract is
    // under construction or not.
    address self = address(this);
    uint256 cs;
    assembly { cs := extcodesize(self) }
    return cs == 0;
  }

  // Reserved storage space to allow for layout changes in the future.
  uint256[50] private ______gap;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol

pragma solidity ^0.6.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.
 */
contract ContextUpgradeSafe is Initializable {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.

    function __Context_init() internal initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {


    }


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

    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/access/Ownable.sol

pragma solidity ^0.6.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */

    function __Ownable_init() internal initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {


        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);

    }


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

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

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

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

    uint256[49] private __gap;
}

// File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.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 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) {
        // Solidity only automatically asserts when dividing by 0
        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: contracts/interfaces/IERC20Detailed.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IERC20Detailed
 * @dev IERC20Detailed interface
 **/


interface IERC20Detailed {
  function name() external view returns (string memory);
  function symbol() external view returns (string memory);
  function decimals() external view returns (uint8);
  function transfer(address to, uint256 value) external returns (bool);
  function approve(address spender, uint256 value) external returns (bool);
  function transferFrom(address from, address to, uint256 value) external returns (bool);
  function totalSupply() external view returns (uint256);
  function balanceOf(address who) external view returns (uint256);
  function allowance(address owner, address spender) external view returns (uint256);

  event Transfer(address indexed from, address indexed to, uint256 value);

  event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: contracts/interfaces/IERC677Receiver.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IERC677Receiver
 * @dev IERC677Receiver interface
 */

interface IERC677Receiver {
  function onTokenTransfer(address from, uint256 amount, bytes calldata data) external returns (bool);
}

// File: contracts/interfaces/IAdministrable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IAdministrable
 * @dev IAdministrable interface
 **/
interface IAdministrable {
  function isAdministrator(address _administrator) external view returns (bool);
  function addAdministrator(address _administrator) external;
  function removeAdministrator(address _administrator) external;

  event AdministratorAdded(address indexed administrator);
  event AdministratorRemoved(address indexed administrator);
}

// File: contracts/interfaces/IGovernable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IGovernable
 * @dev IGovernable interface
 **/
interface IGovernable {
  function realm() external view returns (address);
  function setRealm(address _realm) external;

  function isRealmAdministrator(address _administrator) external view returns (bool);
  function addRealmAdministrator(address _administrator) external;
  function removeRealmAdministrator(address _administrator) external;

  function trustedIntermediaries() external view returns (address[] memory);
  function setTrustedIntermediaries(address[] calldata _trustedIntermediaries) external;

  event TrustedIntermediariesChanged(address[] newTrustedIntermediaries);
  event RealmChanged(address newRealm);
  event RealmAdministratorAdded(address indexed administrator);
  event RealmAdministratorRemoved(address indexed administrator);
}

// File: contracts/interfaces/IPriceOracle.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IPriceOracle
 * @dev IPriceOracle interface
 *
 **/


interface IPriceOracle {

  struct Price {
    uint256 price;
    uint8 decimals;
    uint256 lastUpdated;
  }

  function setPrice(bytes32 _currency1, bytes32 _currency2, uint256 _price, uint8 _decimals) external;
  function setPrices(bytes32[] calldata _currency1, bytes32[] calldata _currency2, uint256[] calldata _price, uint8[] calldata _decimals) external;
  function getPrice(bytes32 _currency1, bytes32 _currency2) external view returns (uint256, uint8);
  function getPrice(string calldata _currency1, string calldata _currency2) external view returns (uint256, uint8);
  function getLastUpdated(bytes32 _currency1, bytes32 _currency2) external view returns (uint256);
  function getDecimals(bytes32 _currency1, bytes32 _currency2) external view returns (uint8);

  event PriceSet(bytes32 indexed currency1, bytes32 indexed currency2, uint256 price, uint8 decimals, uint256 updateDate);
}

// File: contracts/interfaces/IPriceable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IPriceable
 * @dev IPriceable interface
 **/


interface IPriceable {
  function priceOracle() external view returns (IPriceOracle);
  function setPriceOracle(IPriceOracle _priceOracle) external;
  function convertTo(
    uint256 _amount, string calldata _currency, uint8 maxDecimals
  ) external view returns(uint256);

  event PriceOracleChanged(address indexed newPriceOracle);
}

// File: contracts/interfaces/IProcessor.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IProcessor
 * @dev IProcessor interface
 **/

 
interface IProcessor {
  
  /* Register */
  function register(string calldata _name, string calldata _symbol, uint8 _decimals) external;
  /* Rulable */
  function canTransfer(address _from, address _to, uint256 _amount) external view returns (bool, uint256, uint256);
  /* ERC20 */
  function name() external view returns (string memory);
  function symbol() external view returns (string memory);
  function decimals() external view returns (uint8);
  function totalSupply() external view returns (uint256);
  function balanceOf(address _owner) external view returns (uint256);
  function transferFrom(address _from, address _to, uint256 _value) 
    external returns (bool, address, uint256);
  function approve(address _owner, address _spender, uint256 _value) external;
  function allowance(address _owner, address _spender) external view returns (uint256);
  function increaseApproval(address _owner, address _spender, uint _addedValue) external;
  function decreaseApproval(address _owner, address _spender, uint _subtractedValue) external;
  /* Seizable */
  function seize(address _caller, address _account, uint256 _value) external;
  /* Mintable */
  function mint(address _caller, address _to, uint256 _amount) external;
  function burn(address _caller, address _from, uint256 _amount) external;
}

// File: contracts/token/abstract/BridgeERC20.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;










/**
 * @title BridgeERC20
 * @dev BridgeERC20 contract
 *
 * Error messages
 * PR01: Processor is not set
 * AD01: Caller is not administrator
 * AL01: Spender is not allowed for this amount
 * PO03: Price Oracle not set
 * KI01: Caller of setRealm has to be owner or administrator of initial token address for realm
**/


contract BridgeERC20 is Initializable, OwnableUpgradeSafe, IAdministrable, IGovernable, IPriceable, IERC20Detailed {
  using Roles for Roles.Role;
  using SafeMath for uint256;

  event ProcessorChanged(address indexed newProcessor);

  IProcessor internal _processor;
  Roles.Role internal _administrators;
  Roles.Role internal _realmAdministrators;
  address[] internal _trustedIntermediaries;
  address internal _realm;
  IPriceOracle internal _priceOracle;

  /** 
  * @dev Initialization function that replaces constructor in the case of upgradable contracts
  **/
  function initialize(address owner, IProcessor newProcessor) public virtual initializer {
    __Ownable_init();
    transferOwnership(owner);
    _processor = newProcessor;
    _realm = address(this);
    emit ProcessorChanged(address(newProcessor));
    emit RealmChanged(address(this));
  }

  modifier hasProcessor() {
    require(address(_processor) != address(0), "PR01");
    _;
  }

  modifier onlyAdministrator() {
    require(owner() == _msgSender() || isAdministrator(_msgSender()), "AD01");
    _;
  }

  /* Administrable */
  function isAdministrator(address _administrator) public override view returns (bool) {
    return _administrators.has(_administrator);
  }

  function addAdministrator(address _administrator) public override onlyOwner {
    _administrators.add(_administrator);
    emit AdministratorAdded(_administrator);
  }

  function removeAdministrator(address _administrator) public override onlyOwner {
    _administrators.remove(_administrator);
    emit AdministratorRemoved(_administrator);
  }

  /* Governable */
  function realm() public override view returns (address) {
    return _realm;
  }

  function setRealm(address newRealm) public override onlyAdministrator {
    BridgeERC20 king = BridgeERC20(newRealm);
    require(king.owner() == _msgSender() || king.isRealmAdministrator(_msgSender()), "KI01");
    _realm = newRealm;
    emit RealmChanged(newRealm);
  }

  function trustedIntermediaries() public override view returns (address[] memory) {
    return _trustedIntermediaries;
  }

  function setTrustedIntermediaries(address[] calldata newTrustedIntermediaries) external override onlyAdministrator {
    _trustedIntermediaries = newTrustedIntermediaries;
    emit TrustedIntermediariesChanged(newTrustedIntermediaries);
  }

  function isRealmAdministrator(address _administrator) public override view returns (bool) {
    return _realmAdministrators.has(_administrator);
  }

  function addRealmAdministrator(address _administrator) public override onlyAdministrator {
    _realmAdministrators.add(_administrator);
    emit RealmAdministratorAdded(_administrator);
  }

  function removeRealmAdministrator(address _administrator) public override onlyAdministrator {
    _realmAdministrators.remove(_administrator);
    emit RealmAdministratorRemoved(_administrator);
  }

  /* Priceable */
  function priceOracle() public override view returns (IPriceOracle) {
    return _priceOracle;
  }

  function setPriceOracle(IPriceOracle newPriceOracle) public override onlyAdministrator {
    _priceOracle = newPriceOracle;
    emit PriceOracleChanged(address(newPriceOracle));
  }

  function convertTo(
    uint256 _amount, string calldata _currency, uint8 maxDecimals
  ) 
    external override hasProcessor view returns(uint256) 
  {
    require(address(_priceOracle) != address(0), "PO03");
    uint256 amountToConvert = _amount;
    uint256 xrate;
    uint8 xrateDecimals;
    uint8 tokenDecimals = _processor.decimals();
    (xrate, xrateDecimals) = _priceOracle.getPrice(_processor.symbol(), _currency);
    if (xrateDecimals > maxDecimals) {
      xrate = xrate.div(10**uint256(xrateDecimals - maxDecimals));
      xrateDecimals = maxDecimals;
    }
    if (tokenDecimals > maxDecimals) {
      amountToConvert = amountToConvert.div(10**uint256(tokenDecimals - maxDecimals));
      tokenDecimals = maxDecimals;
    }
    /* Multiply amount in token decimals by xrate in xrate decimals */
    return amountToConvert.mul(xrate).mul(10**uint256((2*maxDecimals)-xrateDecimals-tokenDecimals));
  }

  /**
  * @dev Set the token processor
  **/
  function setProcessor(IProcessor newProcessor) public onlyAdministrator {
    _processor = newProcessor;
    emit ProcessorChanged(address(newProcessor));
  }

  /**
  * @return the token processor
  **/
  function processor() public view returns (IProcessor) {
    return _processor;
  }

  /**
  * @return the name of the token.
  */
  function name() public override view hasProcessor returns (string memory) {
    return _processor.name();
  }

  /**
  * @return the symbol of the token.
  */
  function symbol() public override view hasProcessor returns (string memory) {
    return _processor.symbol();
  }

  /**
  * @return the number of decimals of the token.
  */
  function decimals() public override view hasProcessor returns (uint8) {
    return _processor.decimals();
  }

  /**
  * @return total number of tokens in existence
  */
  function totalSupply() public override view hasProcessor returns (uint256) {
    return _processor.totalSupply();
  }

  /**
  * @dev transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  * @return true if transfer is successful, false otherwise
  */
  function transfer(address _to, uint256 _value) public override hasProcessor 
    returns (bool) 
  {
    bool success;
    address updatedTo;
    uint256 updatedAmount;
    (success, updatedTo, updatedAmount) = _transferFrom(
      _msgSender(), 
      _to, 
      _value
    );
    return true;
  }

  function transferAndCall(address _to, uint256 _value, bytes calldata data) external hasProcessor returns (bool)
  {
    bool success;
    address updatedTo;
    uint256 updatedAmount;
    (success, updatedTo, updatedAmount) = _transferFrom(
      _msgSender(), 
      _to, 
      _value
    );
    if (success && _to == updatedTo) {
      success = IERC677Receiver(updatedTo).onTokenTransfer(_msgSender(), updatedAmount, data);
    }
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public override view hasProcessor 
    returns (uint256) 
  {
    return _processor.balanceOf(_owner);
  }


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   * @return true if transfer is successful, false otherwise
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    override
    hasProcessor
    returns (bool)
  {
    require(_value <= _processor.allowance(_from, _msgSender()), "AL01"); 
    bool success;
    address updatedTo;
    uint256 updatedAmount;
    (success, updatedTo, updatedAmount) = _transferFrom(
      _from, 
      _to, 
      _value
    );
    _processor.decreaseApproval(_from, _msgSender(), updatedAmount);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of _msgSender().
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   * @return true if approval is successful, false otherwise
   */
  function approve(address _spender, uint256 _value) public override hasProcessor returns (bool)
  {
    _approve(_msgSender(), _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address _owner,
    address _spender
   )
    public
    override
    view
    hasProcessor
    returns (uint256)
  {
    return _processor.allowance(_owner, _spender);
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    hasProcessor
  {
    _increaseApproval(_msgSender(), _spender, _addedValue);
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    hasProcessor
  {
    _decreaseApproval(_msgSender(), _spender, _subtractedValue);
  }

  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   * @return _success True if the transfer is successful, false otherwise
   * @return _updatedTo The real address the tokens were sent to
   * @return _updatedAmount The real amount of tokens sent
   */
  function _transferFrom(address _from, address _to, uint256 _value) internal returns (bool _success, address _updatedTo, uint256 _updatedAmount) {
    (_success, _updatedTo, _updatedAmount) = _processor.transferFrom(
      _from, 
      _to, 
      _value
    );
    emit Transfer(_from, _updatedTo, _updatedAmount);
    return (_success, _updatedTo, _updatedAmount);
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of _msgSender().
   *
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _owner The owner address of the funds to spend
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function _approve(address _owner, address _spender, uint256 _value) internal {
    _processor.approve(_owner, _spender, _value);
    emit Approval(_owner, _spender, _value);
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   *
   * @param _owner The address which has the funds
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function _increaseApproval(address _owner, address _spender, uint _addedValue) internal {
    _processor.increaseApproval(_owner, _spender, _addedValue);
    uint256 allowed = _processor.allowance(_owner, _spender);
    emit Approval(_owner, _spender, allowed);
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   *
   * @param _owner The address which has the funds
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function _decreaseApproval(address _owner, address _spender, uint _subtractedValue) internal {
    _processor.decreaseApproval(_owner, _spender, _subtractedValue);
    uint256 allowed = _processor.allowance(_owner, _spender);
    emit Approval(_owner, _spender, allowed);
  }

  /* Reserved slots for future use: https://docs.openzeppelin.com/sdk/2.5/writing-contracts.html#modifying-your-contracts */
  uint256[50] private ______gap;
}

// File: contracts/interfaces/ISeizable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title ISeizable
 * @dev ISeizable interface
 **/


interface ISeizable {
  function isSeizer(address _seizer) external view returns (bool);
  function addSeizer(address _seizer) external;
  function removeSeizer(address _seizer) external;

  event SeizerAdded(address indexed seizer);
  event SeizerRemoved(address indexed seizer);

  function seize(address _account, uint256 _value) external;
  event Seize(address account, uint256 amount);
}

// File: contracts/token/abstract/SeizableBridgeERC20.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;




/**
 * @title SeizableBridgeERC20
 * @dev SeizableBridgeERC20 contract
 *
 * Error messages
 * SE02: Caller is not seizer
**/


contract SeizableBridgeERC20 is Initializable, ISeizable, BridgeERC20 {
  using Roles for Roles.Role;
  
  Roles.Role internal _seizers;

  function initialize(
    address owner, 
    IProcessor processor
  ) 
    public override initializer 
  {
    BridgeERC20.initialize(owner, processor);
  }

  modifier onlySeizer() {
    require(isSeizer(_msgSender()), "SE02");
    _;
  }

  function isSeizer(address _seizer) public override view returns (bool) {
    return _seizers.has(_seizer);
  }

  function addSeizer(address _seizer) public override onlyAdministrator {
    _seizers.add(_seizer);
    emit SeizerAdded(_seizer);
  }

  function removeSeizer(address _seizer) public override onlyAdministrator {
    _seizers.remove(_seizer);
    emit SeizerRemoved(_seizer);
  }

  /**
   * @dev called by the owner to seize value from the account
   */
  function seize(address _account, uint256 _value)
    public override onlySeizer hasProcessor
  {
    _processor.seize(_msgSender(), _account, _value);
    emit Seize(_account, _value);
    emit Transfer(_account, _msgSender(), _value); 
  }

  /* Reserved slots for future use: https://docs.openzeppelin.com/sdk/2.5/writing-contracts.html#modifying-your-contracts */
  uint256[49] private ______gap;
}

// File: contracts/interfaces/IRulable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IRulable
 * @dev IRulable interface
 **/


interface IRulable {
  function rule(uint256 ruleId) external view returns (uint256, uint256);
  function rules() external view returns (uint256[] memory, uint256[] memory);

  function canTransfer(address _from, address _to, uint256 _amount) external view returns (bool, uint256, uint256);

  function setRules(
    uint256[] calldata _rules, 
    uint256[] calldata _rulesParams
  ) external;
  event RulesChanged(uint256[] newRules, uint256[] newRulesParams);
}

// File: contracts/interfaces/ISuppliable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title ISuppliable
 * @dev ISuppliable interface
 **/


interface ISuppliable {
  function isSupplier(address _supplier) external view returns (bool);
  function addSupplier(address _supplier) external;
  function removeSupplier(address _supplier) external;

  event SupplierAdded(address indexed supplier);
  event SupplierRemoved(address indexed supplier);
}

// File: contracts/interfaces/IMintable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IMintable
 * @dev IMintable interface
 */

 
interface IMintable {
  function mint(address _to, uint256 _amount) external;
  function burn(address _from, uint256 _amount) external;
 
  event Mint(address indexed to, uint256 amount);
  event Burn(address indexed from, uint256 amount);
}

// File: contracts/interfaces/IBulkTransferable.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IBulkTransferable
 * @dev IBulkTransferable interface
 **/
interface IBulkTransferable {
  function bulkTransfer(address[] calldata _to, uint256[] calldata _values) external;
  function bulkTransferFrom(address _from, address[] calldata _to, uint256[] calldata _values) external;
}

// File: contracts/interfaces/IERC2612.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IERC2612
 * @dev IERC2612 interface
 */

interface IERC2612 {
  function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}

// File: contracts/interfaces/IERC3009.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;

/**
 * @title IERC3009
 * @dev IERC3009 interface
 */

 
interface IERC3009 {
  function transferWithAuthorization(
    address from,
    address to,
    uint256 value,
    uint256 validAfter,
    uint256 validBefore,
    bytes32 nonce,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external;
 
  event AuthorizationUsed(address indexed authorizer, bytes32 indexed nonce);
  event AuthorizationCanceled(
      address indexed authorizer,
      bytes32 indexed nonce
  );

  enum AuthorizationState { Unused, Used, Canceled }
}

// File: contracts/token/utils/ECRecover.sol

/**
 * SPDX-License-Identifier: MIT
 *
 * Copyright (c) 2016-2019 zOS Global Limited
 * Copyright (c) 2018-2020 CENTRE SECZ
 *
 * 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
 * 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.
 */

pragma solidity 0.6.2;

/**
 * @title ECRecover
 * @notice A library that provides a safe ECDSA recovery function
 */
library ECRecover {
    /**
     * @notice Recover signer's address from a signed message
     * @dev Adapted from: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/65e4ffde586ec89af3b7e9140bdc9235d1254853/contracts/cryptography/ECDSA.sol
     * Modifications: Accept v, r, and s as separate arguments
     * @param digest    Keccak-256 hash digest of the signed message
     * @param v         v of the signature
     * @param r         r of the signature
     * @param s         s of the signature
     * @return Signer address
     */
    function recover(
        bytes32 digest,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (
            uint256(s) >
            0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0
        ) {
            revert("ECRecover: invalid signature 's' value");
        }

        if (v != 27 && v != 28) {
            revert("ECRecover: invalid signature 'v' value");
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(digest, v, r, s);
        require(signer != address(0), "ECRecover: invalid signature");

        return signer;
    }
}

// File: contracts/token/utils/EIP712.sol

/**
 * SPDX-License-Identifier: MIT
 *
 * Copyright (c) 2018-2020 CENTRE SECZ
 *
 * 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
 * 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.
 */

pragma solidity 0.6.2;

/**
 * @title EIP712
 * @notice A library that provides EIP712 helper functions
 */
library EIP712 {
    /**
     * @notice Make EIP712 domain separator
     * @param name      Contract name
     * @param version   Contract version
     * @return Domain separator
     */
    function makeDomainSeparator(string memory name, string memory version)
        internal
        view
        returns (bytes32)
    {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return
            keccak256(
                abi.encode(
                    0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f,
                    // = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)")
                    keccak256(bytes(name)),
                    keccak256(bytes(version)),
                    chainId,
                    address(this)
                )
            );
    }

    /**
     * @notice Recover signer's address from a EIP712 signature
     * @param domainSeparator   Domain separator
     * @param v                 v of the signature
     * @param r                 r of the signature
     * @param s                 s of the signature
     * @param typeHashAndData   Type hash concatenated with data
     * @return Signer's address
     */
    function recover(
        bytes32 domainSeparator,
        uint8 v,
        bytes32 r,
        bytes32 s,
        bytes memory typeHashAndData
    ) internal pure returns (address) {
        bytes32 digest = keccak256(
            abi.encodePacked(
                "\x19\x01",
                domainSeparator,
                keccak256(typeHashAndData)
            )
        );
        return ECRecover.recover(digest, v, r, s);
    }
}

// File: contracts/token/BridgeToken.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;










/**
 * @title BridgeToken
 * @dev BridgeToken contract
 *
 * Error messages
 * SU01: Caller is not supplier
 * RU01: Rules and rules params don't have the same length
 * RE01: Rule id overflow
 * EX01: Authorization is expired
 * EX02: Authorization is not valid yet
 * EX03: Authorization is already used or cancelled
 * SI01: Invalid signature 
 * BK01: To array is not the same size as values array
**/


contract BridgeToken is Initializable, IRulable, ISuppliable, IMintable, IERC2612, IERC3009, IBulkTransferable, SeizableBridgeERC20 {
  using Roles for Roles.Role;
  using SafeMath for uint256;
  
  bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; // = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)")
  bytes32 public constant TRANSFER_WITH_AUTHORIZATION_TYPEHASH = 0x7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a2267; // = keccak256("TransferWithAuthorization(address from,address to,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
  bytes32 public constant APPROVE_WITH_AUTHORIZATION_TYPEHASH = 0x808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c; // = keccak256("ApproveWithAuthorization(address owner,address spender,uint256 value,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
  bytes32 public constant INCREASE_APPROVAL_WITH_AUTHORIZATION_TYPEHASH = 0x9a42d39fe98978ff30e5bb6104a6ce6f70ac074c10013f1bce9743e2dccce41b; // = keccak256("IncreaseApprovalWithAuthorization(address owner,address spender,uint256 increment,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
  bytes32 public constant DECREASE_APPROVAL_WITH_AUTHORIZATION_TYPEHASH = 0x604bdf0208a879f7d9fa63ff2f539804aaf6f7876eaa13d531bdc957f1c0284f; // = keccak256("DecreaseApprovalWithAuthorization(address owner,address spender,uint256 decrement,uint256 validAfter,uint256 validBefore,bytes32 nonce)")
  bytes32 public constant CANCEL_AUTHORIZATION_TYPEHASH = 0x158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a1597429; // = keccak256("CancelAuthorization(address authorizer,bytes32 nonce)")

  Roles.Role internal _suppliers;
  uint256[] internal _rules;
  uint256[] internal _rulesParams;
  string internal _contact; // DEPRECATED - Not removed for proxy compatibility: https://docs.openzeppelin.com/sdk/2.5/writing-contracts.html#modifying-your-contracts
  /* EIP712 Domain Separator */
  bytes32 public DOMAIN_SEPARATOR;
  /* EIP2612 Permit nonces */
  mapping(address => uint256) public nonces;
  /* EIP3009 Authorization States */
  mapping(address => mapping(bytes32 => AuthorizationState)) public authorizationStates;

  function initialize(
    address owner,
    IProcessor processor,
    string memory name,
    string memory symbol,
    uint8 decimals,
    address[] memory trustedIntermediaries
  ) 
    public virtual initializer 
  {
    SeizableBridgeERC20.initialize(owner, processor);
    processor.register(name, symbol, decimals);
    _trustedIntermediaries = trustedIntermediaries;
    emit TrustedIntermediariesChanged(trustedIntermediaries);
    _upgradeToV2();
  }

  modifier onlySupplier() {
    require(isSupplier(_msgSender()), "SU01");
    _;
  }

  /* Upgrade helpers */
  function upgradeToV2() public onlyOwner {
    _upgradeToV2();
  }

  /* Mintable */
  function isSupplier(address _supplier) public override view returns (bool) {
    return _suppliers.has(_supplier);
  }

  function addSupplier(address _supplier) public override onlyAdministrator {
    _suppliers.add(_supplier);
    emit SupplierAdded(_supplier);
  }

  function removeSupplier(address _supplier) public override onlyAdministrator {
    _suppliers.remove(_supplier);
    emit SupplierRemoved(_supplier);
  }  

  function mint(address _to, uint256 _amount)
    public override onlySupplier hasProcessor
  {
    _processor.mint(_msgSender(), _to, _amount);
    emit Mint(_to, _amount);
    emit Transfer(address(0), _to, _amount);
  }

  function burn(address _from, uint256 _amount)
    public override onlySupplier hasProcessor 
  {
    _processor.burn(_msgSender(), _from, _amount);
    emit Burn(_from, _amount);
    emit Transfer(_from, address(0), _amount);
  }

  /* Rulable */
  function rules() public override view returns (uint256[] memory, uint256[] memory) {
    return (_rules, _rulesParams);
  }
  
  function rule(uint256 ruleId) public override view returns (uint256, uint256) {
    require(ruleId < _rules.length, "RE01");
    return (_rules[ruleId], _rulesParams[ruleId]);
  }

  function canTransfer(
    address _from, address _to, uint256 _amount
  ) 
    public override hasProcessor view returns (bool, uint256, uint256) 
  {
    return _processor.canTransfer(_from, _to, _amount);
  }

  function setRules(
    uint256[] calldata newRules, 
    uint256[] calldata newRulesParams
  ) 
    external override onlyAdministrator
  {
    require(newRules.length == newRulesParams.length, "RU01");
    _rules = newRules;
    _rulesParams = newRulesParams;
    emit RulesChanged(_rules, _rulesParams);
  }

  /* EIP2612 - Initial code from https://github.com/centrehq/centre-tokens/blob/master/contracts/v2/Permit.sol */
  function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external override hasProcessor {
      require(deadline >= block.timestamp, "EX01");

      bytes memory data = abi.encode(
        PERMIT_TYPEHASH,
        owner,
        spender,
        value,
        nonces[owner]++,
        deadline
      );
      require(
        EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
        "SI01"
      );

      _approve(owner, spender, value);
  }

  /* EIP3009 - Initial code from https://github.com/centrehq/centre-tokens/blob/master/contracts/v2/GasAbstraction.sol */
  /**
   * @notice Execute a transfer with a signed authorization
   * @param from          Payer's address (Authorizer)
   * @param to            Payee's address
   * @param value         Amount to be transferred
   * @param validAfter    The time after which this is valid (unix time)
   * @param validBefore   The time before which this is valid (unix time)
   * @param nonce         Unique nonce
   * @param v             v of the signature
   * @param r             r of the signature
   * @param s             s of the signature
  */
  function transferWithAuthorization(
    address from,
    address to,
    uint256 value,
    uint256 validAfter,
    uint256 validBefore,
    bytes32 nonce,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external override hasProcessor {
    _requireValidAuthorization(from, nonce, validAfter, validBefore);

    bytes memory data = abi.encode(
      TRANSFER_WITH_AUTHORIZATION_TYPEHASH,
      from,
      to,
      value,
      validAfter,
      validBefore,
      nonce
    );
    require(
      EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == from,
      "SI01"
    );

    _markAuthorizationAsUsed(from, nonce);
    _transferFrom(from, to, value);
  }

  /**
  * @notice Update allowance with a signed authorization
  * @param owner         Token owner's address (Authorizer)
  * @param spender       Spender's address
  * @param value         Amount of allowance
  * @param validAfter    The time after which this is valid (unix time)
  * @param validBefore   The time before which this is valid (unix time)
  * @param nonce         Unique nonce
  * @param v             v of the signature
  * @param r             r of the signature
  * @param s             s of the signature
  */
  function approveWithAuthorization(
    address owner,
    address spender,
    uint256 value,
    uint256 validAfter,
    uint256 validBefore,
    bytes32 nonce,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external hasProcessor {
    _requireValidAuthorization(owner, nonce, validAfter, validBefore);

    bytes memory data = abi.encode(
      APPROVE_WITH_AUTHORIZATION_TYPEHASH,
      owner,
      spender,
      value,
      validAfter,
      validBefore,
      nonce
    );
    require(
      EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
      "SI01"
    );

    _markAuthorizationAsUsed(owner, nonce);
    _approve(owner, spender, value);
  }

  /**
  * @notice Increase approval with a signed authorization
  * @param owner         Token owner's address (Authorizer)
  * @param spender       Spender's address
  * @param increment     Amount of increase in allowance
  * @param validAfter    The time after which this is valid (unix time)
  * @param validBefore   The time before which this is valid (unix time)
  * @param nonce         Unique nonce
  * @param v             v of the signature
  * @param r             r of the signature
  * @param s             s of the signature
  */
  function increaseApprovalWithAuthorization(
    address owner,
    address spender,
    uint256 increment,
    uint256 validAfter,
    uint256 validBefore,
    bytes32 nonce,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external hasProcessor {
    _requireValidAuthorization(owner, nonce, validAfter, validBefore);

    bytes memory data = abi.encode(
      INCREASE_APPROVAL_WITH_AUTHORIZATION_TYPEHASH,
      owner,
      spender,
      increment,
      validAfter,
      validBefore,
      nonce
    );
    require(
      EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
      "SI01"
    );

    _markAuthorizationAsUsed(owner, nonce);
    _increaseApproval(owner, spender, increment);
  }

  /**
  * @notice Decrease approval with a signed authorization
  * @param owner         Token owner's address (Authorizer)
  * @param spender       Spender's address
  * @param decrement     Amount of decrease in allowance
  * @param validAfter    The time after which this is valid (unix time)
  * @param validBefore   The time before which this is valid (unix time)
  * @param nonce         Unique nonce
  * @param v             v of the signature
  * @param r             r of the signature
  * @param s             s of the signature
  */
  function decreaseApprovalWithAuthorization(
    address owner,
    address spender,
    uint256 decrement,
    uint256 validAfter,
    uint256 validBefore,
    bytes32 nonce,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external hasProcessor {
    _requireValidAuthorization(owner, nonce, validAfter, validBefore);

    bytes memory data = abi.encode(
      DECREASE_APPROVAL_WITH_AUTHORIZATION_TYPEHASH,
      owner,
      spender,
      decrement,
      validAfter,
      validBefore,
      nonce
    );
    require(
      EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == owner,
      "SI01"
    );

    _markAuthorizationAsUsed(owner, nonce);
    _decreaseApproval(owner, spender, decrement);
  }

  /**
  * @notice Attempt to cancel an authorization
  * @dev Works only if the authorization is not yet used.
  * @param authorizer    Authorizer's address
  * @param nonce         Nonce of the authorization
  * @param v             v of the signature
  * @param r             r of the signature
  * @param s             s of the signature
  */
  function cancelAuthorization(
    address authorizer,
    bytes32 nonce,
    uint8 v,
    bytes32 r,
    bytes32 s
  ) external {
    _requireUnusedAuthorization(authorizer, nonce);

    bytes memory data = abi.encode(
      CANCEL_AUTHORIZATION_TYPEHASH,
      authorizer,
      nonce
    );
    require(
      EIP712.recover(DOMAIN_SEPARATOR, v, r, s, data) == authorizer,
      "SI01"
    );

    authorizationStates[authorizer][nonce] = AuthorizationState.Canceled;
    emit AuthorizationCanceled(authorizer, nonce);
  }

  /* Private EIP3009 functions */
  /**
  * @notice Check that an authorization is unused
  * @param authorizer    Authorizer's address
  * @param nonce         Nonce of the authorization
  */
  function _requireUnusedAuthorization(address authorizer, bytes32 nonce) internal view {
    require(
      authorizationStates[authorizer][nonce] == AuthorizationState.Unused,
      "EX03"
    );
  }

  /**
  * @notice Check that authorization is valid
  * @param authorizer    Authorizer's address
  * @param nonce         Nonce of the authorization
  * @param validAfter    The time after which this is valid (unix time)
  * @param validBefore   The time before which this is valid (unix time)
  */
  function _requireValidAuthorization(
    address authorizer,
    bytes32 nonce,
    uint256 validAfter,
    uint256 validBefore
  ) internal view {
    require(
      block.timestamp > validAfter,
      "EX02"
    );
    require(block.timestamp < validBefore, "EX01");
    _requireUnusedAuthorization(authorizer, nonce);
  }

  /**
  * @notice Mark an authorization as used
  * @param authorizer    Authorizer's address
  * @param nonce         Nonce of the authorization
  */
  function _markAuthorizationAsUsed(address authorizer, bytes32 nonce) internal { 
    authorizationStates[authorizer][nonce] = AuthorizationState.Used;
    emit AuthorizationUsed(authorizer, nonce);
  }

  /**
  * @dev bulk transfer tokens to specified addresses
  * @param _to The array of addresses to transfer to.
  * @param _values The array of amounts to be transferred.
  */
  function bulkTransfer(address[] calldata _to, uint256[] calldata _values) external override hasProcessor  
  {
    require(_to.length == _values.length, "BK01");
    for (uint256 i = 0; i < _to.length; i++) {
      _transferFrom(_msgSender(), _to[i], _values[i]);
    }
  }

  /**
  * @dev bulk transfer tokens from one address to multiple specified addresses
  * @param _from address The address which you want to send tokens from
  * @param _to The array of addresses to transfer to.
  * @param _values The array of amounts to be transferred.
  */
  function bulkTransferFrom(address _from, address[] calldata _to, uint256[] calldata _values) external override hasProcessor  
  {
    require(_to.length == _values.length, "BK01");
    uint256 _totalValue = 0;
    uint256 _totalTransfered = 0;
    for (uint256 i = 0; i < _to.length; i++) {
      _totalValue = _totalValue.add(_values[i]);
    }
    require(_totalValue <= _processor.allowance(_from, _msgSender()), "AL01"); 
    for (uint256 i = 0; i < _to.length; i++) {
      bool success;
      address updatedTo;
      uint256 updatedAmount;
      (success, updatedTo, updatedAmount) = _transferFrom(_from, _to[i], _values[i]);
      _totalTransfered = _totalTransfered.add(updatedAmount);
    }
    _processor.decreaseApproval(_from, _msgSender(), _totalTransfered);
  }

  /* Private upgrader logic */
  function _upgradeToV2() internal {
    DOMAIN_SEPARATOR = EIP712.makeDomainSeparator(_processor.name(), "2");
  }

  /* Reserved slots for future use: https://docs.openzeppelin.com/sdk/2.5/writing-contracts.html#modifying-your-contracts */
  uint256[47] private ______gap;
}

// File: contracts/token/CoinBridgeToken.sol

/*
    Copyright (c) 2019 Mt Pelerin Group Ltd

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License version 3
    as published by the Free Software Foundation with the addition of the
    following permission added to Section 15 as permitted in Section 7(a):
    FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
    MT PELERIN GROUP LTD. MT PELERIN GROUP LTD DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
    OF THIRD PARTY RIGHTS

    This program is distributed in the hope that it will be useful, but
    WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
    or FITNESS FOR A PARTICULAR PURPOSE.
    See the GNU Affero General Public License for more details.
    You should have received a copy of the GNU Affero General Public License
    along with this program; if not, see http://www.gnu.org/licenses or write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA, 02110-1301 USA, or download the license from the following URL:
    https://www.gnu.org/licenses/agpl-3.0.fr.html

    The interactive user interfaces in modified source and object code versions
    of this program must display Appropriate Legal Notices, as required under
    Section 5 of the GNU Affero General Public License.

    You can be released from the requirements of the license by purchasing
    a commercial license. Buying such a license is mandatory as soon as you
    develop commercial activities involving Mt Pelerin Group Ltd software without
    disclosing the source code of your own applications.
    These activities include: offering paid services based/using this product to customers,
    using this product in any application, distributing this product with a closed
    source product.

    For more information, please contact Mt Pelerin Group Ltd at this
    address: [email protected]
*/

pragma solidity 0.6.2;


/**
 * @title CoinBridgeToken
 * @dev CoinBridgeToken contract
 *
 * Error messages
**/


contract CoinBridgeToken is Initializable, BridgeToken {
  /**
  * Purpose:
  * This event is emitted when the board resolution url is changed
  *
  * @param boardResolutionDocumentHash - hash of board resolution document
  */
  event BoardResolutionDocumentSet(bytes32 boardResolutionDocumentHash);

  uint256 public constant VERSION = 3;

  string public boardResolutionDocumentUrl;
  bytes32 public boardResolutionDocumentHash;
  string public terms;

  function initialize(
    address owner,
    IProcessor processor,
    string memory name,
    string memory symbol,
    uint8 decimals,
    address[] memory trustedIntermediaries
  ) 
    public override initializer 
  {
    BridgeToken.initialize(
      owner, 
      processor, 
      name, 
      symbol, 
      decimals,
      trustedIntermediaries
    );
  }

  /**
  * @dev Set the terms of the tokenization (usually a url)
  * @param _terms the terms of the tokenization (usually a url)
  */
  function setTerms(string calldata _terms) external onlyAdministrator {
    terms = _terms;
  }

  /**
  * @dev Set the board resolution url and the board resolution document hash
  * @param _boardResolutionDocumentUrl the url on which the board resolution document can be downloaded
  * @param _boardResolutionDocumentHash the hash of the board resolution document for authenticity check
  */
  function setBoardResolutionDocument(string calldata _boardResolutionDocumentUrl, bytes32 _boardResolutionDocumentHash) external onlyAdministrator {
    boardResolutionDocumentUrl = _boardResolutionDocumentUrl;
    boardResolutionDocumentHash = _boardResolutionDocumentHash;
    emit BoardResolutionDocumentSet(_boardResolutionDocumentHash);
  }

  /* Reserved slots for future use: https://docs.openzeppelin.com/sdk/2.5/writing-contracts.html#modifying-your-contracts */
  uint256[50] private ______gap;
}

Contract Security Audit

Contract ABI

[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"administrator","type":"address"}],"name":"AdministratorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"administrator","type":"address"}],"name":"AdministratorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"boardResolutionDocumentHash","type":"bytes32"}],"name":"BoardResolutionDocumentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPriceOracle","type":"address"}],"name":"PriceOracleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newProcessor","type":"address"}],"name":"ProcessorChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"administrator","type":"address"}],"name":"RealmAdministratorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"administrator","type":"address"}],"name":"RealmAdministratorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRealm","type":"address"}],"name":"RealmChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"newRules","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"newRulesParams","type":"uint256[]"}],"name":"RulesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Seize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seizer","type":"address"}],"name":"SeizerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seizer","type":"address"}],"name":"SeizerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"supplier","type":"address"}],"name":"SupplierAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"supplier","type":"address"}],"name":"SupplierRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"newTrustedIntermediaries","type":"address[]"}],"name":"TrustedIntermediariesChanged","type":"event"},{"inputs":[],"name":"APPROVE_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CANCEL_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECREASE_APPROVAL_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INCREASE_APPROVAL_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_administrator","type":"address"}],"name":"addAdministrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_administrator","type":"address"}],"name":"addRealmAdministrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_seizer","type":"address"}],"name":"addSeizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_supplier","type":"address"}],"name":"addSupplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"approveWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"authorizationStates","outputs":[{"internalType":"enum IERC3009.AuthorizationState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boardResolutionDocumentHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"boardResolutionDocumentUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"bulkTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_values","type":"uint256[]"}],"name":"bulkTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"authorizer","type":"address"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"cancelAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"string","name":"_currency","type":"string"},{"internalType":"uint8","name":"maxDecimals","type":"uint8"}],"name":"convertTo","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"decrement","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"decreaseApprovalWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"increment","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"increaseApprovalWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"contract IProcessor","name":"processor","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"contract IProcessor","name":"processor","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"address[]","name":"trustedIntermediaries","type":"address[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_administrator","type":"address"}],"name":"isAdministrator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_administrator","type":"address"}],"name":"isRealmAdministrator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_seizer","type":"address"}],"name":"isSeizer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_supplier","type":"address"}],"name":"isSupplier","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"priceOracle","outputs":[{"internalType":"contract IPriceOracle","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"processor","outputs":[{"internalType":"contract IProcessor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"realm","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_administrator","type":"address"}],"name":"removeAdministrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_administrator","type":"address"}],"name":"removeRealmAdministrator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_seizer","type":"address"}],"name":"removeSeizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_supplier","type":"address"}],"name":"removeSupplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ruleId","type":"uint256"}],"name":"rule","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rules","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"seize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_boardResolutionDocumentUrl","type":"string"},{"internalType":"bytes32","name":"_boardResolutionDocumentHash","type":"bytes32"}],"name":"setBoardResolutionDocument","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IPriceOracle","name":"newPriceOracle","type":"address"}],"name":"setPriceOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IProcessor","name":"newProcessor","type":"address"}],"name":"setProcessor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRealm","type":"address"}],"name":"setRealm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"newRules","type":"uint256[]"},{"internalType":"uint256[]","name":"newRulesParams","type":"uint256[]"}],"name":"setRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_terms","type":"string"}],"name":"setTerms","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newTrustedIntermediaries","type":"address[]"}],"name":"setTrustedIntermediaries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"terms","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"transferWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"trustedIntermediaries","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"upgradeToV2","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50615ae480620000216000396000f3fe608060405234801561001057600080fd5b50600436106104075760003560e01c806378f86afc11610220578063cc01053e11610130578063e1560fd3116100b8578063eb9253c011610087578063eb9253c0146111e7578063f2fde38b14611213578063f65d663814611239578063fc700bd114611408578063ffa1ad741461142e57610407565b8063e1560fd3146110ad578063e1a8eafd1461110c578063e3ee160e14611132578063e46638e61461119157610407565b8063d73dd623116100ff578063d73dd62314610fef578063d91694871461101b578063da2f030f14611023578063db18af6c14611049578063dd62ed3e1461107f57610407565b8063cc01053e14610f86578063ce1b1d4314610f8e578063d502562514610f96578063d505accf14610f9e57610407565b80639dc29fac116101b3578063ac3e674211610182578063ac3e674214610e0c578063b500329b14610e14578063b9be0ed314610e3a578063ba7b52e014610e92578063c999117614610f6057610407565b80639dc29fac14610d4d5780639ddc118414610d79578063a0cc6a6814610dd8578063a9059cbb14610de057610407565b80638da5cb5b116101ef5780638da5cb5b14610d0f57806395d89b4114610d1757806397ecb37f14610d1f5780639af38fbe14610d2757610407565b806378f86afc14610b455780637bec9b5514610bb35780637ecebe0014610c2b5780638bf64cba14610c5157610407565b80633ed04ad61161031b57806358348cf1116102ae57806368fa81341161027d57806368fa813414610ae15780636bb5d5af14610b075780636d767d5914610b0f57806370a0823114610b17578063715018a614610b3d57610407565b806358348cf114610a465780635a049a7014610a6c5780636618846314610aad57806366ba2ce814610ad957610407565b806346336542116102ea578063463365421461092b578063485cc9551461095157806352f6747a1461097f578063530e784f14610a2057610407565b80633ed04ad6146107e85780634000aea01461080e57806340c10f191461089157806344b0f448146108bd57610407565b806318160ddd1161039e5780632630c12f1161036d5780632630c12f14610728578063287fc5ad1461074c57806330adf81f146107ba578063313ce567146107c25780633644e515146107e057610407565b806318160ddd146106655780631947c5e21461066d5780631c94c2c31461069357806323b872dd146106f257610407565b8063103e6d8f116103da578063103e6d8f1461051757806310c8b40414610567578063153a1f3e1461058157806317df47451461063f57610407565b806306fdde031461040c578063095ea7b3146104895780630a2eb301146104c95780630f5f817a146104ef575b600080fd5b610414611436565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044e578181015183820152602001610436565b50505050905090810190601f16801561047b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104b56004803603604081101561049f57600080fd5b506001600160a01b0381351690602001356115be565b604080519115158252519081900360200190f35b6104b5600480360360208110156104df57600080fd5b50356001600160a01b0316611623565b6105156004803603602081101561050557600080fd5b50356001600160a01b0316611636565b005b6105436004803603604081101561052d57600080fd5b506001600160a01b0381351690602001356116f2565b6040518082600281111561055357fe5b60ff16815260200191505060405180910390f35b61056f611713565b60408051918252519081900360200190f35b6105156004803603604081101561059757600080fd5b810190602081018135600160201b8111156105b157600080fd5b8201836020820111156105c357600080fd5b803590602001918460208302840111600160201b831117156105e457600080fd5b919390929091602081019035600160201b81111561060157600080fd5b82018360208201111561061357600080fd5b803590602001918460208302840111600160201b8311171561063457600080fd5b509092509050611737565b6105156004803603602081101561065557600080fd5b50356001600160a01b0316611816565b61056f6118cd565b6105156004803603602081101561068357600080fd5b50356001600160a01b0316611995565b61051560048036036101208110156106aa57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135611a4b565b6104b56004803603606081101561070857600080fd5b506001600160a01b03813581169160208101359091169060400135611b89565b610730611d74565b604080516001600160a01b039092168252519081900360200190f35b6105156004803603604081101561076257600080fd5b810190602081018135600160201b81111561077c57600080fd5b82018360208201111561078e57600080fd5b803590602001918460018302840111600160201b831117156107af57600080fd5b919350915035611d83565b61056f611e3d565b6107ca611e61565b6040805160ff9092168252519081900360200190f35b61056f611ef8565b610515600480360360208110156107fe57600080fd5b50356001600160a01b0316611eff565b6104b56004803603606081101561082457600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561085357600080fd5b82018360208201111561086557600080fd5b803590602001918460018302840111600160201b8311171561088657600080fd5b509092509050611fb5565b610515600480360360408110156108a757600080fd5b506001600160a01b038135169060200135612117565b610515600480360360208110156108d357600080fd5b810190602081018135600160201b8111156108ed57600080fd5b8201836020820111156108ff57600080fd5b803590602001918460208302840111600160201b8311171561092057600080fd5b50909250905061229f565b6104b56004803603602081101561094157600080fd5b50356001600160a01b0316612381565b6105156004803603604081101561096757600080fd5b506001600160a01b0381358116916020013516612395565b610987612443565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156109cb5781810151838201526020016109b3565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610a0a5781810151838201526020016109f2565b5050505090500194505050505060405180910390f35b61051560048036036020811015610a3657600080fd5b50356001600160a01b03166124f8565b61051560048036036020811015610a5c57600080fd5b50356001600160a01b03166125b0565b610515600480360360a0811015610a8257600080fd5b506001600160a01b038135169060208101359060ff6040820135169060608101359060800135612666565b61051560048036036040811015610ac357600080fd5b506001600160a01b03813516906020013561277b565b61056f6127d7565b61051560048036036020811015610af757600080fd5b50356001600160a01b03166127de565b61056f61287e565b6104146128a2565b61056f60048036036020811015610b2d57600080fd5b50356001600160a01b0316612931565b6105156129f9565b61051560048036036020811015610b5b57600080fd5b810190602081018135600160201b811115610b7557600080fd5b820183602082011115610b8757600080fd5b803590602001918460018302840111600160201b83111715610ba857600080fd5b509092509050612a9b565b61056f60048036036060811015610bc957600080fd5b81359190810190604081016020820135600160201b811115610bea57600080fd5b820183602082011115610bfc57600080fd5b803590602001918460018302840111600160201b83111715610c1d57600080fd5b91935091503560ff16612b16565b61056f60048036036020811015610c4157600080fd5b50356001600160a01b0316612eee565b61051560048036036040811015610c6757600080fd5b810190602081018135600160201b811115610c8157600080fd5b820183602082011115610c9357600080fd5b803590602001918460208302840111600160201b83111715610cb457600080fd5b919390929091602081019035600160201b811115610cd157600080fd5b820183602082011115610ce357600080fd5b803590602001918460208302840111600160201b83111715610d0457600080fd5b509092509050612f01565b61073061308d565b61041461309c565b61056f613133565b61051560048036036020811015610d3d57600080fd5b50356001600160a01b0316613157565b61051560048036036040811015610d6357600080fd5b506001600160a01b03813516906020013561320d565b6105156004803603610120811015610d9057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135613390565b61056f6134c2565b6104b560048036036040811015610df657600080fd5b506001600160a01b0381351690602001356134e6565b610730613555565b61051560048036036020811015610e2a57600080fd5b50356001600160a01b0316613564565b610e42613772565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e7e578181015183820152602001610e66565b505050509050019250505060405180910390f35b61051560048036036060811015610ea857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610ed257600080fd5b820183602082011115610ee457600080fd5b803590602001918460208302840111600160201b83111715610f0557600080fd5b919390929091602081019035600160201b811115610f2257600080fd5b820183602082011115610f3457600080fd5b803590602001918460208302840111600160201b83111715610f5557600080fd5b5090925090506137d4565b61051560048036036020811015610f7657600080fd5b50356001600160a01b0316613a7f565b610515613b1f565b610730613b81565b610414613b90565b610515600480360360e0811015610fb457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135613bec565b6105156004803603604081101561100557600080fd5b506001600160a01b038135169060200135613d61565b61056f613db9565b6104b56004803603602081101561103957600080fd5b50356001600160a01b0316613ddd565b6110666004803603602081101561105f57600080fd5b5035613df0565b6040805192835260208301919091528051918290030190f35b61056f6004803603604081101561109557600080fd5b506001600160a01b0381358116916020013516613e70565b61051560048036036101208110156110c457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135613f41565b6105156004803603602081101561112257600080fd5b50356001600160a01b0316614073565b610515600480360361012081101561114957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e081013590610100013561412b565b6111c7600480360360608110156111a757600080fd5b506001600160a01b0381358116916020810135909116906040013561426c565b604080519315158452602084019290925282820152519081900360600190f35b610515600480360360408110156111fd57600080fd5b506001600160a01b03813516906020013561435b565b6105156004803603602081101561122957600080fd5b50356001600160a01b03166144f9565b610515600480360360c081101561124f57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561128257600080fd5b82018360208201111561129457600080fd5b803590602001918460018302840111600160201b831117156112b557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561130757600080fd5b82018360208201111561131957600080fd5b803590602001918460018302840111600160201b8311171561133a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff853516959094909350604081019250602001359050600160201b81111561139757600080fd5b8201836020820111156113a957600080fd5b803590602001918460208302840111600160201b831117156113ca57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506145f2945050505050565b6104b56004803603602081101561141e57600080fd5b50356001600160a01b03166146a8565b61056f6146bb565b6097546060906001600160a01b031661147f576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b1580156114cd57600080fd5b505afa1580156114e1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561150a57600080fd5b8101908080516040519392919084600160201b82111561152957600080fd5b90830190602082018581111561153e57600080fd5b8251600160201b81118282018810171561155757600080fd5b82525081516020918201929091019080838360005b8381101561158457818101518382015260200161156c565b50505050905090810190601f1680156115b15780820380516001836020036101000a031916815260200191505b5060405250505090505b90565b6097546000906001600160a01b0316611607576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6116196116126146c0565b84846146c4565b5060015b92915050565b600061161d60988363ffffffff61478016565b61163e6146c0565b6001600160a01b031661164f61308d565b6001600160a01b0316148061166f575061166f61166a6146c0565b611623565b6116a9576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b6116bb6101018263ffffffff6147e716565b6040516001600160a01b038216907f278a641d7aa9abcb166cd13a30fc6d7f21034d4c003ce509a84214e11faa77c090600090a250565b61010760209081526000928352604080842090915290825290205460ff1681565b7f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c81565b6097546001600160a01b031661177d576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b8281146117ba576040805162461bcd60e51b81526020600480830191909152602482015263424b303160e01b604482015290519081900360640190fd5b60005b8381101561180f576118046117d06146c0565b8686848181106117dc57fe5b905060200201356001600160a01b03168585858181106117f857fe5b9050602002013561484e565b5050506001016117bd565b5050505050565b61181e6146c0565b6001600160a01b031661182f61308d565b6001600160a01b0316148061184a575061184a61166a6146c0565b611884576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b6118966101018263ffffffff61492b16565b6040516001600160a01b038216907fa9f13e94f3f7dbf69ac8405e3aa6f43a6f162984687d099c7a5cd9b602552cc290600090a250565b6097546000906001600160a01b0316611916576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561196457600080fd5b505afa158015611978573d6000803e3d6000fd5b505050506040513d602081101561198e57600080fd5b5051905090565b61199d6146c0565b6001600160a01b03166119ae61308d565b6001600160a01b031614806119c957506119c961166a6146c0565b611a03576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b611a1460cf8263ffffffff6147e716565b6040516001600160a01b038216907fa7f68f710154f785d34ef4848d515daaf136408524b79a717c82015f9e71fd0490600090a250565b6097546001600160a01b0316611a91576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b611a9d898588886149ac565b604080517f604bdf0208a879f7d9fa63ff2f539804aaf6f7876eaa13d531bdc957f1c0284f60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e08083018890528351808403909101815261010090920190925261010554909190611b249086868686614a36565b6001600160a01b031614611b68576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b611b728a86614a8d565b611b7d8a8a8a614ae8565b50505050505050505050565b6097546000906001600160a01b0316611bd2576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663dd62ed3e85611bec6146c0565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001826001600160a01b03166001600160a01b031681526020019250505060206040518083038186803b158015611c4b57600080fd5b505afa158015611c5f573d6000803e3d6000fd5b505050506040513d6020811015611c7557600080fd5b5051821115611cb4576040805162461bcd60e51b81526020600480830191909152602482015263414c303160e01b604482015290519081900360640190fd5b6000806000611cc487878761484e565b60975492955090935091506001600160a01b031663f019c26788611ce66146c0565b846040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b031681526020018281526020019350505050600060405180830381600087803b158015611d4f57600080fd5b505af1158015611d63573d6000803e3d6000fd5b5060019a9950505050505050505050565b609c546001600160a01b031690565b611d8b6146c0565b6001600160a01b0316611d9c61308d565b6001600160a01b03161480611db75750611db761166a6146c0565b611df1576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b611dfe61013784846157c0565b506101388190556040805182815290517f6d202372e33d794fea455854d52b204a60102e5bedf77b632f16f26f80cd46e39181900360200190a1505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6097546000906001600160a01b0316611eaa576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561196457600080fd5b6101055481565b611f076146c0565b6001600160a01b0316611f1861308d565b6001600160a01b03161480611f335750611f3361166a6146c0565b611f6d576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b611f7e60998263ffffffff61492b16565b6040516001600160a01b038216907f34384dcb6ac9672707fe22d862bf7e9ccaead052d4e8c8e8ffffcdc94b98dfd290600090a250565b6097546000906001600160a01b0316611ffe576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b600080600061201561200e6146c0565b898961484e565b9194509250905082801561203a5750816001600160a01b0316886001600160a01b0316145b1561210957816001600160a01b031663a4c0ed366120566146c0565b8389896040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b1580156120da57600080fd5b505af11580156120ee573d6000803e3d6000fd5b505050506040513d602081101561210457600080fd5b505192505b506001979650505050505050565b6121276121226146c0565b612381565b612161576040805162461bcd60e51b815260206004808301919091526024820152635355303160e01b604482015290519081900360640190fd5b6097546001600160a01b03166121a7576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663c6c3bbe66121c06146c0565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291861660248301526044820185905251606480830192600092919082900301818387803b15801561221557600080fd5b505af1158015612229573d6000803e3d6000fd5b50506040805184815290516001600160a01b03861693507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592509081900360200190a26040805182815290516001600160a01b03841691600091600080516020615a698339815191529181900360200190a35050565b6122a76146c0565b6001600160a01b03166122b861308d565b6001600160a01b031614806122d357506122d361166a6146c0565b61230d576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b612319609a838361583e565b507f57c55be0f3a533db430bb8586b26f0e2efa5afdd84b6657634863b9115cb63f8828260405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a15050565b600061161d6101018363ffffffff61478016565b600054610100900460ff16806123ae57506123ae614c2f565b806123bc575060005460ff16155b6123f75760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015612422576000805460ff1961ff0019909116610100171660011790555b61242c8383614c35565b801561243e576000805461ff00191690555b505050565b6060806101026101038180548060200260200160405190810160405280929190818152602001828054801561249757602002820191906000526020600020905b815481526020019060010190808311612483575b50505050509150808054806020026020016040519081016040528092919081815260200182805480156124e957602002820191906000526020600020905b8154815260200190600101908083116124d5575b50505050509050915091509091565b6125006146c0565b6001600160a01b031661251161308d565b6001600160a01b0316148061252c575061252c61166a6146c0565b612566576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b609c80546001600160a01b0319166001600160a01b0383169081179091556040517fb36d86785c7d32b1ad714bb705e00e93eccc37b8cf47549043e61e10908ad25190600090a250565b6125b86146c0565b6001600160a01b03166125c961308d565b6001600160a01b031614806125e457506125e461166a6146c0565b61261e576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b61262f60cf8263ffffffff61492b16565b6040516001600160a01b038216907f8990e54f9b080279eec4654d02ab4bc37586d8b2a7c4553dba17ccb6a0aceca190600090a250565b6126708585614d6f565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b0387168183018190526060828101889052835180840390910181526080909201909252610105549091906126d89086868686614a36565b6001600160a01b03161461271c576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6001600160a01b038616600081815261010760209081526040808320898452909152808220805460ff19166002179055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b6097546001600160a01b03166127c1576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6127d36127cc6146c0565b8383614ae8565b5050565b6101385481565b6127e66146c0565b6065546001600160a01b03908116911614612836576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b61284760988263ffffffff6147e716565b6040516001600160a01b038216907fd5c9a61a4ab4b84f78da506149b7b0d376843283a81eee2dbdc9a55f988ab64390600090a250565b7f604bdf0208a879f7d9fa63ff2f539804aaf6f7876eaa13d531bdc957f1c0284f81565b610137805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156129295780601f106128fe57610100808354040283529160200191612929565b820191906000526020600020905b81548152906001019060200180831161290c57829003601f168201915b505050505081565b6097546000906001600160a01b031661297a576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609754604080516370a0823160e01b81526001600160a01b038581166004830152915191909216916370a08231916024808301926020929190829003018186803b1580156129c757600080fd5b505afa1580156129db573d6000803e3d6000fd5b505050506040513d60208110156129f157600080fd5b505192915050565b612a016146c0565b6065546001600160a01b03908116911614612a51576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b612aa36146c0565b6001600160a01b0316612ab461308d565b6001600160a01b03161480612acf5750612acf61166a6146c0565b612b09576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b61243e61013983836157c0565b6097546000906001600160a01b0316612b5f576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609c546001600160a01b0316612ba5576040805162461bcd60e51b81526020600480830191909152602482015263504f303360e01b604482015290519081900360640190fd5b6097546040805163313ce56760e01b815290518792600092839283926001600160a01b03169163313ce567916004808301926020929190829003018186803b158015612bf057600080fd5b505afa158015612c04573d6000803e3d6000fd5b505050506040513d6020811015612c1a57600080fd5b5051609c54609754604080516395d89b4160e01b815290519394506001600160a01b0392831693633d0f34da93909216916395d89b4191600480820192600092909190829003018186803b158015612c7157600080fd5b505afa158015612c85573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612cae57600080fd5b8101908080516040519392919084600160201b821115612ccd57600080fd5b908301906020820185811115612ce257600080fd5b8251600160201b811182820188101715612cfb57600080fd5b82525081516020918201929091019080838360005b83811015612d28578181015183820152602001612d10565b50505050905090810190601f168015612d555780820380516001836020036101000a031916815260200191505b506040525050508a8a6040518463ffffffff1660e01b8152600401808060200180602001838103835286818151815260200191508051906020019080838360005b83811015612dae578181015183820152602001612d96565b50505050905090810190601f168015612ddb5780820380516001836020036101000a031916815260200191505b508381038252848152602001858580828437600081840152601f19601f82011690508083019250505095505050505050604080518083038186803b158015612e2257600080fd5b505afa158015612e36573d6000803e3d6000fd5b505050506040513d6040811015612e4c57600080fd5b508051602090910151909350915060ff8087169083161115612e8657612e808360ff88850316600a0a63ffffffff614ddd16565b92508591505b8560ff168160ff161115612eb257612eac8460ff88840316600a0a63ffffffff614ddd16565b93508590505b612ee160ff6002880284900383900316600a0a612ed5868663ffffffff614e2616565b9063ffffffff614e2616565b9998505050505050505050565b6101066020526000908152604090205481565b612f096146c0565b6001600160a01b0316612f1a61308d565b6001600160a01b03161480612f355750612f3561166a6146c0565b612f6f576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b828114612fac576040805162461bcd60e51b815260206004808301919091526024820152635255303160e01b604482015290519081900360640190fd5b612fb9610102858561589d565b50612fc7610103838361589d565b507fea151774b9c9cb9dbecc6a5859099bc715b907ebd16cb2d48a2fc63ab3e29f12610102610103604051808060200180602001838103835285818154815260200191508054801561303857602002820191906000526020600020905b815481526020019060010190808311613024575b5050838103825284818154815260200191508054801561307757602002820191906000526020600020905b815481526020019060010190808311613063575b505094505050505060405180910390a150505050565b6065546001600160a01b031690565b6097546060906001600160a01b03166130e5576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156114cd57600080fd5b7f9a42d39fe98978ff30e5bb6104a6ce6f70ac074c10013f1bce9743e2dccce41b81565b61315f6146c0565b6001600160a01b031661317061308d565b6001600160a01b0316148061318b575061318b61166a6146c0565b6131c5576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b6131d660998263ffffffff6147e716565b6040516001600160a01b038216907f8a9fdef46f258b6423e7eb8be61cbbb7375a5d65e932083b7b1267982fcd352090600090a250565b6132186121226146c0565b613252576040805162461bcd60e51b815260206004808301919091526024820152635355303160e01b604482015290519081900360640190fd5b6097546001600160a01b0316613298576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663f6b911bc6132b16146c0565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291861660248301526044820185905251606480830192600092919082900301818387803b15801561330657600080fd5b505af115801561331a573d6000803e3d6000fd5b50506040805184815290516001600160a01b03861693507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592509081900360200190a26040805182815290516000916001600160a01b03851691600080516020615a698339815191529181900360200190a35050565b6097546001600160a01b03166133d6576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6133e2898588886149ac565b604080517f9a42d39fe98978ff30e5bb6104a6ce6f70ac074c10013f1bce9743e2dccce41b60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252610105549091906134699086868686614a36565b6001600160a01b0316146134ad576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6134b78a86614a8d565b611b7d8a8a8a614e7f565b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b6097546000906001600160a01b031661352f576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b600080600061354661353f6146c0565b878761484e565b50600198975050505050505050565b609b546001600160a01b031690565b61356c6146c0565b6001600160a01b031661357d61308d565b6001600160a01b03161480613598575061359861166a6146c0565b6135d2576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b806135db6146c0565b6001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561361d57600080fd5b505afa158015613631573d6000803e3d6000fd5b505050506040513d602081101561364757600080fd5b50516001600160a01b031614806136e35750806001600160a01b031663da2f030f6136706146c0565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156136b657600080fd5b505afa1580156136ca573d6000803e3d6000fd5b505050506040513d60208110156136e057600080fd5b50515b61371d576040805162461bcd60e51b815260206004808301919091526024820152634b49303160e01b604482015290519081900360640190fd5b609b80546001600160a01b0384166001600160a01b0319909116811790915560408051918252517f198af0cedad0e99479f8e29795c967775c9a824402a94819578621b53864c2439181900360200190a15050565b6060609a8054806020026020016040519081016040528092919081815260200182805480156137ca57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116137ac575b5050505050905090565b6097546001600160a01b031661381a576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b828114613857576040805162461bcd60e51b81526020600480830191909152602482015263424b303160e01b604482015290519081900360640190fd5b600080805b858110156138935761388985858381811061387357fe5b9050602002013584614edc90919063ffffffff16565b925060010161385c565b506097546001600160a01b031663dd62ed3e886138ae6146c0565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001826001600160a01b03166001600160a01b031681526020019250505060206040518083038186803b15801561390d57600080fd5b505afa158015613921573d6000803e3d6000fd5b505050506040513d602081101561393757600080fd5b5051821115613976576040805162461bcd60e51b81526020600480830191909152602482015263414c303160e01b604482015290519081900360640190fd5b60005b858110156139da5760008060006139b28b8b8b8781811061399657fe5b905060200201356001600160a01b03168a8a888181106117f857fe5b919450925090506139c9858263ffffffff614edc16565b945050600190920191506139799050565b506097546001600160a01b031663f019c267886139f56146c0565b846040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b031681526020018281526020019350505050600060405180830381600087803b158015613a5e57600080fd5b505af1158015613a72573d6000803e3d6000fd5b5050505050505050505050565b613a876146c0565b6065546001600160a01b03908116911614613ad7576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b613ae860988263ffffffff61492b16565b6040516001600160a01b038216907fe78a1675a4b4d68d04fc70b93f9c37c5288e084d9b02d718103f7ad5e292b68890600090a250565b613b276146c0565b6065546001600160a01b03908116911614613b77576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b613b7f614f36565b565b6097546001600160a01b031690565b610139805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156129295780601f106128fe57610100808354040283529160200191612929565b6097546001600160a01b0316613c32576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b42841015613c70576040805162461bcd60e51b815260206004808301919091526024820152634558303160e01b604482015290519081900360640190fd5b6001600160a01b038088166000818152610106602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c992810192909252818301849052938a1660608201526080810189905260a081019390935260c08084018890528151808503909101815260e0909301905261010554613d089086868686614a36565b6001600160a01b031614613d4c576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b613d578888886146c4565b5050505050505050565b6097546001600160a01b0316613da7576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6127d3613db26146c0565b8383614e7f565b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b600061161d60998363ffffffff61478016565b6101025460009081908310613e35576040805162461bcd60e51b815260206004808301919091526024820152635245303160e01b604482015290519081900360640190fd5b6101028381548110613e4357fe5b90600052602060002001546101038481548110613e5c57fe5b906000526020600020015491509150915091565b6097546000906001600160a01b0316613eb9576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b60975460408051636eb1769f60e11b81526001600160a01b03868116600483015285811660248301529151919092169163dd62ed3e916044808301926020929190829003018186803b158015613f0e57600080fd5b505afa158015613f22573d6000803e3d6000fd5b505050506040513d6020811015613f3857600080fd5b50519392505050565b6097546001600160a01b0316613f87576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b613f93898588886149ac565b604080517f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e0808301889052835180840390910181526101009092019092526101055490919061401a9086868686614a36565b6001600160a01b03161461405e576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6140688a86614a8d565b611b7d8a8a8a6146c4565b61407b6146c0565b6001600160a01b031661408c61308d565b6001600160a01b031614806140a757506140a761166a6146c0565b6140e1576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b609780546001600160a01b0319166001600160a01b0383169081179091556040517f63e7655c5ec08f94bc8ad23d90d8b7b5b1eddd5bb793c6dbfc7e00ce8fcdac4790600090a250565b6097546001600160a01b0316614171576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b61417d898588886149ac565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252610105549091906142049086868686614a36565b6001600160a01b031614614248576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6142528a86614a8d565b61425d8a8a8a61484e565b50505050505050505050505050565b609754600090819081906001600160a01b03166142b9576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609754604080516372331c7360e11b81526001600160a01b0389811660048301528881166024830152604482018890529151919092169163e46638e6916064808301926060929190829003018186803b15801561431557600080fd5b505afa158015614329573d6000803e3d6000fd5b505050506040513d606081101561433f57600080fd5b5080516020820151604090920151909891975095509350505050565b61436b6143666146c0565b6146a8565b6143a5576040805162461bcd60e51b8152602060048083019190915260248201526329a2981960e11b604482015290519081900360640190fd5b6097546001600160a01b03166143eb576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663b2a02ff16144046146c0565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291861660248301526044820185905251606480830192600092919082900301818387803b15801561445957600080fd5b505af115801561446d573d6000803e3d6000fd5b5050604080516001600160a01b03861681526020810185905281517f4051ba94e08bb094159fc38391422b4b8ccfd2b1f8919c0eb37bb042d4b9cd8e9450908190039091019150a16144bd6146c0565b6001600160a01b0316826001600160a01b0316600080516020615a69833981519152836040518082815260200191505060405180910390a35050565b6145016146c0565b6065546001600160a01b03908116911614614551576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b6001600160a01b0381166145965760405162461bcd60e51b81526004018080602001828103825260268152602001806159916026913960400191505060405180910390fd5b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff168061460b575061460b614c2f565b80614619575060005460ff16155b6146545760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff1615801561467f576000805460ff1961ff0019909116610100171660011790555b61468d878787878787615086565b801561469f576000805461ff00191690555b50505050505050565b600061161d60cf8363ffffffff61478016565b600381565b3390565b6097546040805163e1f21c6760e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163e1f21c6791606480830192600092919082900301818387803b15801561472157600080fd5b505af1158015614735573d6000803e3d6000fd5b50506040805184815290516001600160a01b038087169450871692507f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259181900360200190a3505050565b60006001600160a01b0382166147c75760405162461bcd60e51b8152600401808060200182810382526022815260200180615a196022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6147f18282614780565b61482c5760405162461bcd60e51b81526004018080602001828103825260218152602001806159b76021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b609754604080516323b872dd60e01b81526001600160a01b0386811660048301528581166024830152604482018590529151600093849384939116916323b872dd9160648082019260609290919082900301818787803b1580156148b157600080fd5b505af11580156148c5573d6000803e3d6000fd5b505050506040513d60608110156148db57600080fd5b5080516020808301516040938401518451818152945193975090955093506001600160a01b0380861693908a1692600080516020615a69833981519152929181900390910190a393509350939050565b6149358282614780565b15614987576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b8142116149e9576040805162461bcd60e51b8152602060048083019190915260248201526322ac181960e11b604482015290519081900360640190fd5b804210614a26576040805162461bcd60e51b815260206004808301919091526024820152634558303160e01b604482015290519081900360640190fd5b614a308484614d6f565b50505050565b80516020808301919091206040805161190160f01b81850152602281018990526042808201939093528151808203909301835260620190528051910120600090614a82818787876152e3565b979650505050505050565b6001600160a01b038216600081815261010760209081526040808320858452909152808220805460ff19166001179055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b6097546040805163f019c26760e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163f019c26791606480830192600092919082900301818387803b158015614b4557600080fd5b505af1158015614b59573d6000803e3d6000fd5b505060975460408051636eb1769f60e11b81526001600160a01b038881166004830152878116602483015291516000955091909216925063dd62ed3e91604480820192602092909190829003018186803b158015614bb657600080fd5b505afa158015614bca573d6000803e3d6000fd5b505050506040513d6020811015614be057600080fd5b50516040805182815290519192506001600160a01b0380861692908716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925919081900360200190a350505050565b303b1590565b600054610100900460ff1680614c4e5750614c4e614c2f565b80614c5c575060005460ff16155b614c975760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015614cc2576000805460ff1961ff0019909116610100171660011790555b614cca615461565b614cd3836144f9565b609780546001600160a01b0384166001600160a01b03199182168117909255609b8054909116301790556040517f63e7655c5ec08f94bc8ad23d90d8b7b5b1eddd5bb793c6dbfc7e00ce8fcdac4790600090a26040805130815290517f198af0cedad0e99479f8e29795c967775c9a824402a94819578621b53864c2439181900360200190a1801561243e576000805461ff0019169055505050565b6001600160a01b03821660009081526101076020908152604080832084845290915281205460ff166002811115614da257fe5b146127d3576040805162461bcd60e51b815260206004808301919091526024820152634558303360e01b604482015290519081900360640190fd5b6000614e1f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250615513565b9392505050565b600082614e355750600061161d565b82820282848281614e4257fe5b0414614e1f5760405162461bcd60e51b81526004018080602001828103825260218152602001806159d86021913960400191505060405180910390fd5b6097546040805163bcdd612160e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163bcdd612191606480830192600092919082900301818387803b158015614b4557600080fd5b600082820183811015614e1f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b609754604080516306fdde0360e01b81529051615080926001600160a01b0316916306fdde03916004808301926000929190829003018186803b158015614f7c57600080fd5b505afa158015614f90573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015614fb957600080fd5b8101908080516040519392919084600160201b821115614fd857600080fd5b908301906020820185811115614fed57600080fd5b8251600160201b81118282018810171561500657600080fd5b82525081516020918201929091019080838360005b8381101561503357818101518382015260200161501b565b50505050905090810190601f1680156150605780820380516001836020036101000a031916815260200191505b506040818101905260018152601960f91b602082015292506155b5915050565b61010555565b600054610100900460ff168061509f575061509f614c2f565b806150ad575060005460ff16155b6150e85760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015615113576000805460ff1961ff0019909116610100171660011790555b61511d8787612395565b856001600160a01b031663b3f90e0a8686866040518463ffffffff1660e01b81526004018080602001806020018460ff1660ff168152602001838103835286818151815260200191508051906020019080838360005b8381101561518b578181015183820152602001615173565b50505050905090810190601f1680156151b85780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156151eb5781810151838201526020016151d3565b50505050905090810190601f1680156152185780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561523a57600080fd5b505af115801561524e573d6000803e3d6000fd5b505083516152659250609a915060208501906158d7565b507f57c55be0f3a533db430bb8586b26f0e2efa5afdd84b6657634863b9115cb63f8826040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156152c85781810151838201526020016152b0565b505050509050019250505060405180910390a161468d614f36565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156153445760405162461bcd60e51b8152600401808060200182810382526026815260200180615a896026913960400191505060405180910390fd5b8360ff16601b1415801561535c57508360ff16601c14155b156153985760405162461bcd60e51b815260040180806020018281038252602681526020018061596b6026913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa1580156153f0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116615458576040805162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e617475726500000000604482015290519081900360640190fd5b95945050505050565b600054610100900460ff168061547a575061547a614c2f565b80615488575060005460ff16155b6154c35760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff161580156154ee576000805460ff1961ff0019909116610100171660011790555b6154f6615627565b6154fe6156c7565b8015615510576000805461ff00191690555b50565b6000818361559f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561556457818101518382015260200161554c565b50505050905090810190601f1680156155915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816155ab57fe5b0495945050505050565b8151602092830120815191830191909120604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818601528082019390935260608301919091524660808301523060a0808401919091528151808403909101815260c09092019052805191012090565b600054610100900460ff16806156405750615640614c2f565b8061564e575060005460ff16155b6156895760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff161580156154fe576000805460ff1961ff0019909116610100171660011790558015615510576000805461ff001916905550565b600054610100900460ff16806156e057506156e0614c2f565b806156ee575060005460ff16155b6157295760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015615754576000805460ff1961ff0019909116610100171660011790555b600061575e6146c0565b606580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015615510576000805461ff001916905550565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106158015782800160ff1982351617855561582e565b8280016001018555821561582e579182015b8281111561582e578235825591602001919060010190615813565b5061583a92915061592c565b5090565b828054828255906000526020600020908101928215615891579160200282015b828111156158915781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061585e565b5061583a929150615946565b82805482825590600052602060002090810192821561582e579160200282018281111561582e578235825591602001919060010190615813565b828054828255906000526020600020908101928215615891579160200282015b8281111561589157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906158f7565b6115bb91905b8082111561583a5760008155600101615932565b6115bb91905b8082111561583a5780546001600160a01b031916815560010161594c56fe45435265636f7665723a20696e76616c6964207369676e6174757265202776272076616c75654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45435265636f7665723a20696e76616c6964207369676e6174757265202773272076616c7565a26469706673582212203658da9188448a0ea6ad8f4cbb05045cab98dd471ea877462350533fbf211b6764736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106104075760003560e01c806378f86afc11610220578063cc01053e11610130578063e1560fd3116100b8578063eb9253c011610087578063eb9253c0146111e7578063f2fde38b14611213578063f65d663814611239578063fc700bd114611408578063ffa1ad741461142e57610407565b8063e1560fd3146110ad578063e1a8eafd1461110c578063e3ee160e14611132578063e46638e61461119157610407565b8063d73dd623116100ff578063d73dd62314610fef578063d91694871461101b578063da2f030f14611023578063db18af6c14611049578063dd62ed3e1461107f57610407565b8063cc01053e14610f86578063ce1b1d4314610f8e578063d502562514610f96578063d505accf14610f9e57610407565b80639dc29fac116101b3578063ac3e674211610182578063ac3e674214610e0c578063b500329b14610e14578063b9be0ed314610e3a578063ba7b52e014610e92578063c999117614610f6057610407565b80639dc29fac14610d4d5780639ddc118414610d79578063a0cc6a6814610dd8578063a9059cbb14610de057610407565b80638da5cb5b116101ef5780638da5cb5b14610d0f57806395d89b4114610d1757806397ecb37f14610d1f5780639af38fbe14610d2757610407565b806378f86afc14610b455780637bec9b5514610bb35780637ecebe0014610c2b5780638bf64cba14610c5157610407565b80633ed04ad61161031b57806358348cf1116102ae57806368fa81341161027d57806368fa813414610ae15780636bb5d5af14610b075780636d767d5914610b0f57806370a0823114610b17578063715018a614610b3d57610407565b806358348cf114610a465780635a049a7014610a6c5780636618846314610aad57806366ba2ce814610ad957610407565b806346336542116102ea578063463365421461092b578063485cc9551461095157806352f6747a1461097f578063530e784f14610a2057610407565b80633ed04ad6146107e85780634000aea01461080e57806340c10f191461089157806344b0f448146108bd57610407565b806318160ddd1161039e5780632630c12f1161036d5780632630c12f14610728578063287fc5ad1461074c57806330adf81f146107ba578063313ce567146107c25780633644e515146107e057610407565b806318160ddd146106655780631947c5e21461066d5780631c94c2c31461069357806323b872dd146106f257610407565b8063103e6d8f116103da578063103e6d8f1461051757806310c8b40414610567578063153a1f3e1461058157806317df47451461063f57610407565b806306fdde031461040c578063095ea7b3146104895780630a2eb301146104c95780630f5f817a146104ef575b600080fd5b610414611436565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561044e578181015183820152602001610436565b50505050905090810190601f16801561047b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104b56004803603604081101561049f57600080fd5b506001600160a01b0381351690602001356115be565b604080519115158252519081900360200190f35b6104b5600480360360208110156104df57600080fd5b50356001600160a01b0316611623565b6105156004803603602081101561050557600080fd5b50356001600160a01b0316611636565b005b6105436004803603604081101561052d57600080fd5b506001600160a01b0381351690602001356116f2565b6040518082600281111561055357fe5b60ff16815260200191505060405180910390f35b61056f611713565b60408051918252519081900360200190f35b6105156004803603604081101561059757600080fd5b810190602081018135600160201b8111156105b157600080fd5b8201836020820111156105c357600080fd5b803590602001918460208302840111600160201b831117156105e457600080fd5b919390929091602081019035600160201b81111561060157600080fd5b82018360208201111561061357600080fd5b803590602001918460208302840111600160201b8311171561063457600080fd5b509092509050611737565b6105156004803603602081101561065557600080fd5b50356001600160a01b0316611816565b61056f6118cd565b6105156004803603602081101561068357600080fd5b50356001600160a01b0316611995565b61051560048036036101208110156106aa57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135611a4b565b6104b56004803603606081101561070857600080fd5b506001600160a01b03813581169160208101359091169060400135611b89565b610730611d74565b604080516001600160a01b039092168252519081900360200190f35b6105156004803603604081101561076257600080fd5b810190602081018135600160201b81111561077c57600080fd5b82018360208201111561078e57600080fd5b803590602001918460018302840111600160201b831117156107af57600080fd5b919350915035611d83565b61056f611e3d565b6107ca611e61565b6040805160ff9092168252519081900360200190f35b61056f611ef8565b610515600480360360208110156107fe57600080fd5b50356001600160a01b0316611eff565b6104b56004803603606081101561082457600080fd5b6001600160a01b0382351691602081013591810190606081016040820135600160201b81111561085357600080fd5b82018360208201111561086557600080fd5b803590602001918460018302840111600160201b8311171561088657600080fd5b509092509050611fb5565b610515600480360360408110156108a757600080fd5b506001600160a01b038135169060200135612117565b610515600480360360208110156108d357600080fd5b810190602081018135600160201b8111156108ed57600080fd5b8201836020820111156108ff57600080fd5b803590602001918460208302840111600160201b8311171561092057600080fd5b50909250905061229f565b6104b56004803603602081101561094157600080fd5b50356001600160a01b0316612381565b6105156004803603604081101561096757600080fd5b506001600160a01b0381358116916020013516612395565b610987612443565b604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156109cb5781810151838201526020016109b3565b50505050905001838103825284818151815260200191508051906020019060200280838360005b83811015610a0a5781810151838201526020016109f2565b5050505090500194505050505060405180910390f35b61051560048036036020811015610a3657600080fd5b50356001600160a01b03166124f8565b61051560048036036020811015610a5c57600080fd5b50356001600160a01b03166125b0565b610515600480360360a0811015610a8257600080fd5b506001600160a01b038135169060208101359060ff6040820135169060608101359060800135612666565b61051560048036036040811015610ac357600080fd5b506001600160a01b03813516906020013561277b565b61056f6127d7565b61051560048036036020811015610af757600080fd5b50356001600160a01b03166127de565b61056f61287e565b6104146128a2565b61056f60048036036020811015610b2d57600080fd5b50356001600160a01b0316612931565b6105156129f9565b61051560048036036020811015610b5b57600080fd5b810190602081018135600160201b811115610b7557600080fd5b820183602082011115610b8757600080fd5b803590602001918460018302840111600160201b83111715610ba857600080fd5b509092509050612a9b565b61056f60048036036060811015610bc957600080fd5b81359190810190604081016020820135600160201b811115610bea57600080fd5b820183602082011115610bfc57600080fd5b803590602001918460018302840111600160201b83111715610c1d57600080fd5b91935091503560ff16612b16565b61056f60048036036020811015610c4157600080fd5b50356001600160a01b0316612eee565b61051560048036036040811015610c6757600080fd5b810190602081018135600160201b811115610c8157600080fd5b820183602082011115610c9357600080fd5b803590602001918460208302840111600160201b83111715610cb457600080fd5b919390929091602081019035600160201b811115610cd157600080fd5b820183602082011115610ce357600080fd5b803590602001918460208302840111600160201b83111715610d0457600080fd5b509092509050612f01565b61073061308d565b61041461309c565b61056f613133565b61051560048036036020811015610d3d57600080fd5b50356001600160a01b0316613157565b61051560048036036040811015610d6357600080fd5b506001600160a01b03813516906020013561320d565b6105156004803603610120811015610d9057600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135613390565b61056f6134c2565b6104b560048036036040811015610df657600080fd5b506001600160a01b0381351690602001356134e6565b610730613555565b61051560048036036020811015610e2a57600080fd5b50356001600160a01b0316613564565b610e42613772565b60408051602080825283518183015283519192839290830191858101910280838360005b83811015610e7e578181015183820152602001610e66565b505050509050019250505060405180910390f35b61051560048036036060811015610ea857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610ed257600080fd5b820183602082011115610ee457600080fd5b803590602001918460208302840111600160201b83111715610f0557600080fd5b919390929091602081019035600160201b811115610f2257600080fd5b820183602082011115610f3457600080fd5b803590602001918460208302840111600160201b83111715610f5557600080fd5b5090925090506137d4565b61051560048036036020811015610f7657600080fd5b50356001600160a01b0316613a7f565b610515613b1f565b610730613b81565b610414613b90565b610515600480360360e0811015610fb457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135613bec565b6105156004803603604081101561100557600080fd5b506001600160a01b038135169060200135613d61565b61056f613db9565b6104b56004803603602081101561103957600080fd5b50356001600160a01b0316613ddd565b6110666004803603602081101561105f57600080fd5b5035613df0565b6040805192835260208301919091528051918290030190f35b61056f6004803603604081101561109557600080fd5b506001600160a01b0381358116916020013516613e70565b61051560048036036101208110156110c457600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e0810135906101000135613f41565b6105156004803603602081101561112257600080fd5b50356001600160a01b0316614073565b610515600480360361012081101561114957600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a08101359060ff60c0820135169060e081013590610100013561412b565b6111c7600480360360608110156111a757600080fd5b506001600160a01b0381358116916020810135909116906040013561426c565b604080519315158452602084019290925282820152519081900360600190f35b610515600480360360408110156111fd57600080fd5b506001600160a01b03813516906020013561435b565b6105156004803603602081101561122957600080fd5b50356001600160a01b03166144f9565b610515600480360360c081101561124f57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561128257600080fd5b82018360208201111561129457600080fd5b803590602001918460018302840111600160201b831117156112b557600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561130757600080fd5b82018360208201111561131957600080fd5b803590602001918460018302840111600160201b8311171561133a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929560ff853516959094909350604081019250602001359050600160201b81111561139757600080fd5b8201836020820111156113a957600080fd5b803590602001918460208302840111600160201b831117156113ca57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506145f2945050505050565b6104b56004803603602081101561141e57600080fd5b50356001600160a01b03166146a8565b61056f6146bb565b6097546060906001600160a01b031661147f576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b03166306fdde036040518163ffffffff1660e01b815260040160006040518083038186803b1580156114cd57600080fd5b505afa1580156114e1573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052602081101561150a57600080fd5b8101908080516040519392919084600160201b82111561152957600080fd5b90830190602082018581111561153e57600080fd5b8251600160201b81118282018810171561155757600080fd5b82525081516020918201929091019080838360005b8381101561158457818101518382015260200161156c565b50505050905090810190601f1680156115b15780820380516001836020036101000a031916815260200191505b5060405250505090505b90565b6097546000906001600160a01b0316611607576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6116196116126146c0565b84846146c4565b5060015b92915050565b600061161d60988363ffffffff61478016565b61163e6146c0565b6001600160a01b031661164f61308d565b6001600160a01b0316148061166f575061166f61166a6146c0565b611623565b6116a9576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b6116bb6101018263ffffffff6147e716565b6040516001600160a01b038216907f278a641d7aa9abcb166cd13a30fc6d7f21034d4c003ce509a84214e11faa77c090600090a250565b61010760209081526000928352604080842090915290825290205460ff1681565b7f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c81565b6097546001600160a01b031661177d576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b8281146117ba576040805162461bcd60e51b81526020600480830191909152602482015263424b303160e01b604482015290519081900360640190fd5b60005b8381101561180f576118046117d06146c0565b8686848181106117dc57fe5b905060200201356001600160a01b03168585858181106117f857fe5b9050602002013561484e565b5050506001016117bd565b5050505050565b61181e6146c0565b6001600160a01b031661182f61308d565b6001600160a01b0316148061184a575061184a61166a6146c0565b611884576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b6118966101018263ffffffff61492b16565b6040516001600160a01b038216907fa9f13e94f3f7dbf69ac8405e3aa6f43a6f162984687d099c7a5cd9b602552cc290600090a250565b6097546000906001600160a01b0316611916576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561196457600080fd5b505afa158015611978573d6000803e3d6000fd5b505050506040513d602081101561198e57600080fd5b5051905090565b61199d6146c0565b6001600160a01b03166119ae61308d565b6001600160a01b031614806119c957506119c961166a6146c0565b611a03576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b611a1460cf8263ffffffff6147e716565b6040516001600160a01b038216907fa7f68f710154f785d34ef4848d515daaf136408524b79a717c82015f9e71fd0490600090a250565b6097546001600160a01b0316611a91576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b611a9d898588886149ac565b604080517f604bdf0208a879f7d9fa63ff2f539804aaf6f7876eaa13d531bdc957f1c0284f60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e08083018890528351808403909101815261010090920190925261010554909190611b249086868686614a36565b6001600160a01b031614611b68576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b611b728a86614a8d565b611b7d8a8a8a614ae8565b50505050505050505050565b6097546000906001600160a01b0316611bd2576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663dd62ed3e85611bec6146c0565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001826001600160a01b03166001600160a01b031681526020019250505060206040518083038186803b158015611c4b57600080fd5b505afa158015611c5f573d6000803e3d6000fd5b505050506040513d6020811015611c7557600080fd5b5051821115611cb4576040805162461bcd60e51b81526020600480830191909152602482015263414c303160e01b604482015290519081900360640190fd5b6000806000611cc487878761484e565b60975492955090935091506001600160a01b031663f019c26788611ce66146c0565b846040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b031681526020018281526020019350505050600060405180830381600087803b158015611d4f57600080fd5b505af1158015611d63573d6000803e3d6000fd5b5060019a9950505050505050505050565b609c546001600160a01b031690565b611d8b6146c0565b6001600160a01b0316611d9c61308d565b6001600160a01b03161480611db75750611db761166a6146c0565b611df1576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b611dfe61013784846157c0565b506101388190556040805182815290517f6d202372e33d794fea455854d52b204a60102e5bedf77b632f16f26f80cd46e39181900360200190a1505050565b7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6097546000906001600160a01b0316611eaa576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561196457600080fd5b6101055481565b611f076146c0565b6001600160a01b0316611f1861308d565b6001600160a01b03161480611f335750611f3361166a6146c0565b611f6d576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b611f7e60998263ffffffff61492b16565b6040516001600160a01b038216907f34384dcb6ac9672707fe22d862bf7e9ccaead052d4e8c8e8ffffcdc94b98dfd290600090a250565b6097546000906001600160a01b0316611ffe576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b600080600061201561200e6146c0565b898961484e565b9194509250905082801561203a5750816001600160a01b0316886001600160a01b0316145b1561210957816001600160a01b031663a4c0ed366120566146c0565b8389896040518563ffffffff1660e01b815260040180856001600160a01b03166001600160a01b03168152602001848152602001806020018281038252848482818152602001925080828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b1580156120da57600080fd5b505af11580156120ee573d6000803e3d6000fd5b505050506040513d602081101561210457600080fd5b505192505b506001979650505050505050565b6121276121226146c0565b612381565b612161576040805162461bcd60e51b815260206004808301919091526024820152635355303160e01b604482015290519081900360640190fd5b6097546001600160a01b03166121a7576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663c6c3bbe66121c06146c0565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291861660248301526044820185905251606480830192600092919082900301818387803b15801561221557600080fd5b505af1158015612229573d6000803e3d6000fd5b50506040805184815290516001600160a01b03861693507f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688592509081900360200190a26040805182815290516001600160a01b03841691600091600080516020615a698339815191529181900360200190a35050565b6122a76146c0565b6001600160a01b03166122b861308d565b6001600160a01b031614806122d357506122d361166a6146c0565b61230d576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b612319609a838361583e565b507f57c55be0f3a533db430bb8586b26f0e2efa5afdd84b6657634863b9115cb63f8828260405180806020018281038252848482818152602001925060200280828437600083820152604051601f909101601f19169092018290039550909350505050a15050565b600061161d6101018363ffffffff61478016565b600054610100900460ff16806123ae57506123ae614c2f565b806123bc575060005460ff16155b6123f75760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015612422576000805460ff1961ff0019909116610100171660011790555b61242c8383614c35565b801561243e576000805461ff00191690555b505050565b6060806101026101038180548060200260200160405190810160405280929190818152602001828054801561249757602002820191906000526020600020905b815481526020019060010190808311612483575b50505050509150808054806020026020016040519081016040528092919081815260200182805480156124e957602002820191906000526020600020905b8154815260200190600101908083116124d5575b50505050509050915091509091565b6125006146c0565b6001600160a01b031661251161308d565b6001600160a01b0316148061252c575061252c61166a6146c0565b612566576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b609c80546001600160a01b0319166001600160a01b0383169081179091556040517fb36d86785c7d32b1ad714bb705e00e93eccc37b8cf47549043e61e10908ad25190600090a250565b6125b86146c0565b6001600160a01b03166125c961308d565b6001600160a01b031614806125e457506125e461166a6146c0565b61261e576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b61262f60cf8263ffffffff61492b16565b6040516001600160a01b038216907f8990e54f9b080279eec4654d02ab4bc37586d8b2a7c4553dba17ccb6a0aceca190600090a250565b6126708585614d6f565b604080517f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742960208201526001600160a01b0387168183018190526060828101889052835180840390910181526080909201909252610105549091906126d89086868686614a36565b6001600160a01b03161461271c576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6001600160a01b038616600081815261010760209081526040808320898452909152808220805460ff19166002179055518792917f1cdd46ff242716cdaa72d159d339a485b3438398348d68f09d7c8c0a59353d8191a3505050505050565b6097546001600160a01b03166127c1576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6127d36127cc6146c0565b8383614ae8565b5050565b6101385481565b6127e66146c0565b6065546001600160a01b03908116911614612836576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b61284760988263ffffffff6147e716565b6040516001600160a01b038216907fd5c9a61a4ab4b84f78da506149b7b0d376843283a81eee2dbdc9a55f988ab64390600090a250565b7f604bdf0208a879f7d9fa63ff2f539804aaf6f7876eaa13d531bdc957f1c0284f81565b610137805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156129295780601f106128fe57610100808354040283529160200191612929565b820191906000526020600020905b81548152906001019060200180831161290c57829003601f168201915b505050505081565b6097546000906001600160a01b031661297a576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609754604080516370a0823160e01b81526001600160a01b038581166004830152915191909216916370a08231916024808301926020929190829003018186803b1580156129c757600080fd5b505afa1580156129db573d6000803e3d6000fd5b505050506040513d60208110156129f157600080fd5b505192915050565b612a016146c0565b6065546001600160a01b03908116911614612a51576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b6065546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3606580546001600160a01b0319169055565b612aa36146c0565b6001600160a01b0316612ab461308d565b6001600160a01b03161480612acf5750612acf61166a6146c0565b612b09576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b61243e61013983836157c0565b6097546000906001600160a01b0316612b5f576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609c546001600160a01b0316612ba5576040805162461bcd60e51b81526020600480830191909152602482015263504f303360e01b604482015290519081900360640190fd5b6097546040805163313ce56760e01b815290518792600092839283926001600160a01b03169163313ce567916004808301926020929190829003018186803b158015612bf057600080fd5b505afa158015612c04573d6000803e3d6000fd5b505050506040513d6020811015612c1a57600080fd5b5051609c54609754604080516395d89b4160e01b815290519394506001600160a01b0392831693633d0f34da93909216916395d89b4191600480820192600092909190829003018186803b158015612c7157600080fd5b505afa158015612c85573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015612cae57600080fd5b8101908080516040519392919084600160201b821115612ccd57600080fd5b908301906020820185811115612ce257600080fd5b8251600160201b811182820188101715612cfb57600080fd5b82525081516020918201929091019080838360005b83811015612d28578181015183820152602001612d10565b50505050905090810190601f168015612d555780820380516001836020036101000a031916815260200191505b506040525050508a8a6040518463ffffffff1660e01b8152600401808060200180602001838103835286818151815260200191508051906020019080838360005b83811015612dae578181015183820152602001612d96565b50505050905090810190601f168015612ddb5780820380516001836020036101000a031916815260200191505b508381038252848152602001858580828437600081840152601f19601f82011690508083019250505095505050505050604080518083038186803b158015612e2257600080fd5b505afa158015612e36573d6000803e3d6000fd5b505050506040513d6040811015612e4c57600080fd5b508051602090910151909350915060ff8087169083161115612e8657612e808360ff88850316600a0a63ffffffff614ddd16565b92508591505b8560ff168160ff161115612eb257612eac8460ff88840316600a0a63ffffffff614ddd16565b93508590505b612ee160ff6002880284900383900316600a0a612ed5868663ffffffff614e2616565b9063ffffffff614e2616565b9998505050505050505050565b6101066020526000908152604090205481565b612f096146c0565b6001600160a01b0316612f1a61308d565b6001600160a01b03161480612f355750612f3561166a6146c0565b612f6f576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b828114612fac576040805162461bcd60e51b815260206004808301919091526024820152635255303160e01b604482015290519081900360640190fd5b612fb9610102858561589d565b50612fc7610103838361589d565b507fea151774b9c9cb9dbecc6a5859099bc715b907ebd16cb2d48a2fc63ab3e29f12610102610103604051808060200180602001838103835285818154815260200191508054801561303857602002820191906000526020600020905b815481526020019060010190808311613024575b5050838103825284818154815260200191508054801561307757602002820191906000526020600020905b815481526020019060010190808311613063575b505094505050505060405180910390a150505050565b6065546001600160a01b031690565b6097546060906001600160a01b03166130e5576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609760009054906101000a90046001600160a01b03166001600160a01b03166395d89b416040518163ffffffff1660e01b815260040160006040518083038186803b1580156114cd57600080fd5b7f9a42d39fe98978ff30e5bb6104a6ce6f70ac074c10013f1bce9743e2dccce41b81565b61315f6146c0565b6001600160a01b031661317061308d565b6001600160a01b0316148061318b575061318b61166a6146c0565b6131c5576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b6131d660998263ffffffff6147e716565b6040516001600160a01b038216907f8a9fdef46f258b6423e7eb8be61cbbb7375a5d65e932083b7b1267982fcd352090600090a250565b6132186121226146c0565b613252576040805162461bcd60e51b815260206004808301919091526024820152635355303160e01b604482015290519081900360640190fd5b6097546001600160a01b0316613298576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663f6b911bc6132b16146c0565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291861660248301526044820185905251606480830192600092919082900301818387803b15801561330657600080fd5b505af115801561331a573d6000803e3d6000fd5b50506040805184815290516001600160a01b03861693507fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca592509081900360200190a26040805182815290516000916001600160a01b03851691600080516020615a698339815191529181900360200190a35050565b6097546001600160a01b03166133d6576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6133e2898588886149ac565b604080517f9a42d39fe98978ff30e5bb6104a6ce6f70ac074c10013f1bce9743e2dccce41b60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252610105549091906134699086868686614a36565b6001600160a01b0316146134ad576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6134b78a86614a8d565b611b7d8a8a8a614e7f565b7f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b6097546000906001600160a01b031661352f576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b600080600061354661353f6146c0565b878761484e565b50600198975050505050505050565b609b546001600160a01b031690565b61356c6146c0565b6001600160a01b031661357d61308d565b6001600160a01b03161480613598575061359861166a6146c0565b6135d2576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b806135db6146c0565b6001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561361d57600080fd5b505afa158015613631573d6000803e3d6000fd5b505050506040513d602081101561364757600080fd5b50516001600160a01b031614806136e35750806001600160a01b031663da2f030f6136706146c0565b6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156136b657600080fd5b505afa1580156136ca573d6000803e3d6000fd5b505050506040513d60208110156136e057600080fd5b50515b61371d576040805162461bcd60e51b815260206004808301919091526024820152634b49303160e01b604482015290519081900360640190fd5b609b80546001600160a01b0384166001600160a01b0319909116811790915560408051918252517f198af0cedad0e99479f8e29795c967775c9a824402a94819578621b53864c2439181900360200190a15050565b6060609a8054806020026020016040519081016040528092919081815260200182805480156137ca57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116137ac575b5050505050905090565b6097546001600160a01b031661381a576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b828114613857576040805162461bcd60e51b81526020600480830191909152602482015263424b303160e01b604482015290519081900360640190fd5b600080805b858110156138935761388985858381811061387357fe5b9050602002013584614edc90919063ffffffff16565b925060010161385c565b506097546001600160a01b031663dd62ed3e886138ae6146c0565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b03168152602001826001600160a01b03166001600160a01b031681526020019250505060206040518083038186803b15801561390d57600080fd5b505afa158015613921573d6000803e3d6000fd5b505050506040513d602081101561393757600080fd5b5051821115613976576040805162461bcd60e51b81526020600480830191909152602482015263414c303160e01b604482015290519081900360640190fd5b60005b858110156139da5760008060006139b28b8b8b8781811061399657fe5b905060200201356001600160a01b03168a8a888181106117f857fe5b919450925090506139c9858263ffffffff614edc16565b945050600190920191506139799050565b506097546001600160a01b031663f019c267886139f56146c0565b846040518463ffffffff1660e01b815260040180846001600160a01b03166001600160a01b03168152602001836001600160a01b03166001600160a01b031681526020018281526020019350505050600060405180830381600087803b158015613a5e57600080fd5b505af1158015613a72573d6000803e3d6000fd5b5050505050505050505050565b613a876146c0565b6065546001600160a01b03908116911614613ad7576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b613ae860988263ffffffff61492b16565b6040516001600160a01b038216907fe78a1675a4b4d68d04fc70b93f9c37c5288e084d9b02d718103f7ad5e292b68890600090a250565b613b276146c0565b6065546001600160a01b03908116911614613b77576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b613b7f614f36565b565b6097546001600160a01b031690565b610139805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156129295780601f106128fe57610100808354040283529160200191612929565b6097546001600160a01b0316613c32576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b42841015613c70576040805162461bcd60e51b815260206004808301919091526024820152634558303160e01b604482015290519081900360640190fd5b6001600160a01b038088166000818152610106602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c992810192909252818301849052938a1660608201526080810189905260a081019390935260c08084018890528151808503909101815260e0909301905261010554613d089086868686614a36565b6001600160a01b031614613d4c576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b613d578888886146c4565b5050505050505050565b6097546001600160a01b0316613da7576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6127d3613db26146c0565b8383614e7f565b7f158b0a9edf7a828aad02f63cd515c68ef2f50ba807396f6d12842833a159742981565b600061161d60998363ffffffff61478016565b6101025460009081908310613e35576040805162461bcd60e51b815260206004808301919091526024820152635245303160e01b604482015290519081900360640190fd5b6101028381548110613e4357fe5b90600052602060002001546101038481548110613e5c57fe5b906000526020600020015491509150915091565b6097546000906001600160a01b0316613eb9576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b60975460408051636eb1769f60e11b81526001600160a01b03868116600483015285811660248301529151919092169163dd62ed3e916044808301926020929190829003018186803b158015613f0e57600080fd5b505afa158015613f22573d6000803e3d6000fd5b505050506040513d6020811015613f3857600080fd5b50519392505050565b6097546001600160a01b0316613f87576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b613f93898588886149ac565b604080517f808c10407a796f3ef2c7ea38c0638ea9d2b8a1c63e3ca9e1f56ce84ae59df73c60208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e0808301889052835180840390910181526101009092019092526101055490919061401a9086868686614a36565b6001600160a01b03161461405e576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6140688a86614a8d565b611b7d8a8a8a6146c4565b61407b6146c0565b6001600160a01b031661408c61308d565b6001600160a01b031614806140a757506140a761166a6146c0565b6140e1576040805162461bcd60e51b815260206004808301919091526024820152634144303160e01b604482015290519081900360640190fd5b609780546001600160a01b0319166001600160a01b0383169081179091556040517f63e7655c5ec08f94bc8ad23d90d8b7b5b1eddd5bb793c6dbfc7e00ce8fcdac4790600090a250565b6097546001600160a01b0316614171576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b61417d898588886149ac565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208201526001600160a01b03808c16828401819052908b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252610105549091906142049086868686614a36565b6001600160a01b031614614248576040805162461bcd60e51b815260206004808301919091526024820152635349303160e01b604482015290519081900360640190fd5b6142528a86614a8d565b61425d8a8a8a61484e565b50505050505050505050505050565b609754600090819081906001600160a01b03166142b9576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b609754604080516372331c7360e11b81526001600160a01b0389811660048301528881166024830152604482018890529151919092169163e46638e6916064808301926060929190829003018186803b15801561431557600080fd5b505afa158015614329573d6000803e3d6000fd5b505050506040513d606081101561433f57600080fd5b5080516020820151604090920151909891975095509350505050565b61436b6143666146c0565b6146a8565b6143a5576040805162461bcd60e51b8152602060048083019190915260248201526329a2981960e11b604482015290519081900360640190fd5b6097546001600160a01b03166143eb576040805162461bcd60e51b815260206004808301919091526024820152635052303160e01b604482015290519081900360640190fd5b6097546001600160a01b031663b2a02ff16144046146c0565b604080516001600160e01b031960e085901b1681526001600160a01b03928316600482015291861660248301526044820185905251606480830192600092919082900301818387803b15801561445957600080fd5b505af115801561446d573d6000803e3d6000fd5b5050604080516001600160a01b03861681526020810185905281517f4051ba94e08bb094159fc38391422b4b8ccfd2b1f8919c0eb37bb042d4b9cd8e9450908190039091019150a16144bd6146c0565b6001600160a01b0316826001600160a01b0316600080516020615a69833981519152836040518082815260200191505060405180910390a35050565b6145016146c0565b6065546001600160a01b03908116911614614551576040805162461bcd60e51b815260206004820181905260248201526000805160206159f9833981519152604482015290519081900360640190fd5b6001600160a01b0381166145965760405162461bcd60e51b81526004018080602001828103825260268152602001806159916026913960400191505060405180910390fd5b6065546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3606580546001600160a01b0319166001600160a01b0392909216919091179055565b600054610100900460ff168061460b575061460b614c2f565b80614619575060005460ff16155b6146545760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff1615801561467f576000805460ff1961ff0019909116610100171660011790555b61468d878787878787615086565b801561469f576000805461ff00191690555b50505050505050565b600061161d60cf8363ffffffff61478016565b600381565b3390565b6097546040805163e1f21c6760e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163e1f21c6791606480830192600092919082900301818387803b15801561472157600080fd5b505af1158015614735573d6000803e3d6000fd5b50506040805184815290516001600160a01b038087169450871692507f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259181900360200190a3505050565b60006001600160a01b0382166147c75760405162461bcd60e51b8152600401808060200182810382526022815260200180615a196022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6147f18282614780565b61482c5760405162461bcd60e51b81526004018080602001828103825260218152602001806159b76021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b609754604080516323b872dd60e01b81526001600160a01b0386811660048301528581166024830152604482018590529151600093849384939116916323b872dd9160648082019260609290919082900301818787803b1580156148b157600080fd5b505af11580156148c5573d6000803e3d6000fd5b505050506040513d60608110156148db57600080fd5b5080516020808301516040938401518451818152945193975090955093506001600160a01b0380861693908a1692600080516020615a69833981519152929181900390910190a393509350939050565b6149358282614780565b15614987576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b8142116149e9576040805162461bcd60e51b8152602060048083019190915260248201526322ac181960e11b604482015290519081900360640190fd5b804210614a26576040805162461bcd60e51b815260206004808301919091526024820152634558303160e01b604482015290519081900360640190fd5b614a308484614d6f565b50505050565b80516020808301919091206040805161190160f01b81850152602281018990526042808201939093528151808203909301835260620190528051910120600090614a82818787876152e3565b979650505050505050565b6001600160a01b038216600081815261010760209081526040808320858452909152808220805460ff19166001179055518392917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a35050565b6097546040805163f019c26760e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163f019c26791606480830192600092919082900301818387803b158015614b4557600080fd5b505af1158015614b59573d6000803e3d6000fd5b505060975460408051636eb1769f60e11b81526001600160a01b038881166004830152878116602483015291516000955091909216925063dd62ed3e91604480820192602092909190829003018186803b158015614bb657600080fd5b505afa158015614bca573d6000803e3d6000fd5b505050506040513d6020811015614be057600080fd5b50516040805182815290519192506001600160a01b0380861692908716917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925919081900360200190a350505050565b303b1590565b600054610100900460ff1680614c4e5750614c4e614c2f565b80614c5c575060005460ff16155b614c975760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015614cc2576000805460ff1961ff0019909116610100171660011790555b614cca615461565b614cd3836144f9565b609780546001600160a01b0384166001600160a01b03199182168117909255609b8054909116301790556040517f63e7655c5ec08f94bc8ad23d90d8b7b5b1eddd5bb793c6dbfc7e00ce8fcdac4790600090a26040805130815290517f198af0cedad0e99479f8e29795c967775c9a824402a94819578621b53864c2439181900360200190a1801561243e576000805461ff0019169055505050565b6001600160a01b03821660009081526101076020908152604080832084845290915281205460ff166002811115614da257fe5b146127d3576040805162461bcd60e51b815260206004808301919091526024820152634558303360e01b604482015290519081900360640190fd5b6000614e1f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250615513565b9392505050565b600082614e355750600061161d565b82820282848281614e4257fe5b0414614e1f5760405162461bcd60e51b81526004018080602001828103825260218152602001806159d86021913960400191505060405180910390fd5b6097546040805163bcdd612160e01b81526001600160a01b0386811660048301528581166024830152604482018590529151919092169163bcdd612191606480830192600092919082900301818387803b158015614b4557600080fd5b600082820183811015614e1f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b609754604080516306fdde0360e01b81529051615080926001600160a01b0316916306fdde03916004808301926000929190829003018186803b158015614f7c57600080fd5b505afa158015614f90573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015614fb957600080fd5b8101908080516040519392919084600160201b821115614fd857600080fd5b908301906020820185811115614fed57600080fd5b8251600160201b81118282018810171561500657600080fd5b82525081516020918201929091019080838360005b8381101561503357818101518382015260200161501b565b50505050905090810190601f1680156150605780820380516001836020036101000a031916815260200191505b506040818101905260018152601960f91b602082015292506155b5915050565b61010555565b600054610100900460ff168061509f575061509f614c2f565b806150ad575060005460ff16155b6150e85760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015615113576000805460ff1961ff0019909116610100171660011790555b61511d8787612395565b856001600160a01b031663b3f90e0a8686866040518463ffffffff1660e01b81526004018080602001806020018460ff1660ff168152602001838103835286818151815260200191508051906020019080838360005b8381101561518b578181015183820152602001615173565b50505050905090810190601f1680156151b85780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156151eb5781810151838201526020016151d3565b50505050905090810190601f1680156152185780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561523a57600080fd5b505af115801561524e573d6000803e3d6000fd5b505083516152659250609a915060208501906158d7565b507f57c55be0f3a533db430bb8586b26f0e2efa5afdd84b6657634863b9115cb63f8826040518080602001828103825283818151815260200191508051906020019060200280838360005b838110156152c85781810151838201526020016152b0565b505050509050019250505060405180910390a161468d614f36565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156153445760405162461bcd60e51b8152600401808060200182810382526026815260200180615a896026913960400191505060405180910390fd5b8360ff16601b1415801561535c57508360ff16601c14155b156153985760405162461bcd60e51b815260040180806020018281038252602681526020018061596b6026913960400191505060405180910390fd5b604080516000808252602080830180855289905260ff88168385015260608301879052608083018690529251909260019260a080820193601f1981019281900390910190855afa1580156153f0573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116615458576040805162461bcd60e51b815260206004820152601c60248201527f45435265636f7665723a20696e76616c6964207369676e617475726500000000604482015290519081900360640190fd5b95945050505050565b600054610100900460ff168061547a575061547a614c2f565b80615488575060005460ff16155b6154c35760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff161580156154ee576000805460ff1961ff0019909116610100171660011790555b6154f6615627565b6154fe6156c7565b8015615510576000805461ff00191690555b50565b6000818361559f5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561556457818101518382015260200161554c565b50505050905090810190601f1680156155915780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816155ab57fe5b0495945050505050565b8151602092830120815191830191909120604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818601528082019390935260608301919091524660808301523060a0808401919091528151808403909101815260c09092019052805191012090565b600054610100900460ff16806156405750615640614c2f565b8061564e575060005460ff16155b6156895760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff161580156154fe576000805460ff1961ff0019909116610100171660011790558015615510576000805461ff001916905550565b600054610100900460ff16806156e057506156e0614c2f565b806156ee575060005460ff16155b6157295760405162461bcd60e51b815260040180806020018281038252602e815260200180615a3b602e913960400191505060405180910390fd5b600054610100900460ff16158015615754576000805460ff1961ff0019909116610100171660011790555b600061575e6146c0565b606580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508015615510576000805461ff001916905550565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106158015782800160ff1982351617855561582e565b8280016001018555821561582e579182015b8281111561582e578235825591602001919060010190615813565b5061583a92915061592c565b5090565b828054828255906000526020600020908101928215615891579160200282015b828111156158915781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061585e565b5061583a929150615946565b82805482825590600052602060002090810192821561582e579160200282018281111561582e578235825591602001919060010190615813565b828054828255906000526020600020908101928215615891579160200282015b8281111561589157825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906158f7565b6115bb91905b8082111561583a5760008155600101615932565b6115bb91905b8082111561583a5780546001600160a01b031916815560010161594c56fe45435265636f7665723a20696e76616c6964207369676e6174757265202776272076616c75654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45435265636f7665723a20696e76616c6964207369676e6174757265202773272076616c7565a26469706673582212203658da9188448a0ea6ad8f4cbb05045cab98dd471ea877462350533fbf211b6764736f6c63430006020033

Deployed Bytecode Sourcemap

96169:1914:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;96169:1914:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40530:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40530:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44089:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44089:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;37036:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37036:140:0;-1:-1:-1;;;;;37036:140:0;;:::i;82376:156::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82376:156:0;-1:-1:-1;;;;;82376:156:0;;:::i;:::-;;81316:85;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;81316:85:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79794:128;;;:::i;:::-;;;;;;;;;;;;;;;;92318:279;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;92318:279:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;92318:279:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;92318:279:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;92318:279:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;92318:279:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;92318:279:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;92318:279:0;;-1:-1:-1;92318:279:0;-1:-1:-1;92318:279:0;:::i;82222:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82222:148:0;-1:-1:-1;;;;;82222:148:0;;:::i;41061:119::-;;;:::i;54575:144::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54575:144:0;-1:-1:-1;;;;;54575:144:0;;:::i;89069:731::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;89069:731:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42888:502::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;42888:502:0;;;;;;;;;;;;;;;;;:::i;38891:99::-;;;:::i;:::-;;;;-1:-1:-1;;;;;38891:99:0;;;;;;;;;;;;;;97570:348;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;97570:348:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;97570:348:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;97570:348:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;97570:348:0;;-1:-1:-1;97570:348:0;-1:-1:-1;97570:348:0;;:::i;79310:108::-;;;:::i;40882:111::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;81165:31;;;:::i;38466:193::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38466:193:0;-1:-1:-1;;;;;38466:193:0;;:::i;41719:468::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;41719:468:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;41719:468:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;41719:468:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;41719:468:0;;-1:-1:-1;41719:468:0;-1:-1:-1;41719:468:0;:::i;82540:226::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;82540:226:0;;;;;;;;:::i;38061:243::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38061:243:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;38061:243:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;38061:243:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;38061:243:0;;-1:-1:-1;38061:243:0;-1:-1:-1;38061:243:0;:::i;82096:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;82096:120:0;-1:-1:-1;;;;;82096:120:0;;:::i;54057:164::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;54057:164:0;;;;;;;;;;:::i;83030:125::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;83030:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;83030:125:0;;;;;;;;;;;;;;;;;;;38996:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38996:184:0;-1:-1:-1;;;;;38996:184:0;;:::i;54433:136::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54433:136:0;-1:-1:-1;;;;;54433:136:0;;:::i;90161:545::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;90161:545:0;;;;;;;;;;;;;;;;;;;;;;;;;:::i;45912:187::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;45912:187:0;;;;;;;;:::i;96568:42::-;;;:::i;37358:178::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37358:178:0;-1:-1:-1;;;;;37358:178:0;;:::i;80365:138::-;;;:::i;96523:40::-;;;:::i;42396:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42396:145:0;-1:-1:-1;;;;;42396:145:0;;:::i;7754:148::-;;;:::i;97166:96::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;97166:96:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;97166:96:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;97166:96:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;97166:96:0;;-1:-1:-1;97166:96:0;-1:-1:-1;97166:96:0;:::i;39186:937::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;39186:937:0;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;39186:937:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;39186:937:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;39186:937:0;;-1:-1:-1;39186:937:0;-1:-1:-1;39186:937:0;;;;:::i;81232:41::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;81232:41:0;-1:-1:-1;;;;;81232:41:0;;:::i;83573:319::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;83573:319:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;83573:319:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;83573:319:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;83573:319:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;83573:319:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;83573:319:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;83573:319:0;;-1:-1:-1;83573:319:0;-1:-1:-1;83573:319:0;:::i;7112:79::-;;;:::i;40698:115::-;;;:::i;80068:138::-;;;:::i;38665:201::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38665:201:0;-1:-1:-1;;;;;38665:201:0;;:::i;82772:235::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;82772:235:0;;;;;;;;:::i;87776:731::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;87776:731:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;79524:129::-;;;:::i;41402:311::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;41402:311:0;;;;;;;;:::i;37562:82::-;;;:::i;37650:276::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37650:276:0;-1:-1:-1;;;;;37650:276:0;;:::i;37932:123::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;37932:123:0;;;;;;;;;;;;;;;;;92884:793;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;92884:793:0;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;92884:793:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;92884:793:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;92884:793:0;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;92884:793:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;92884:793:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;-1:-1;92884:793:0;;-1:-1:-1;92884:793:0;-1:-1:-1;92884:793:0;:::i;37182:170::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37182:170:0;-1:-1:-1;;;;;37182:170:0;;:::i;82005:67::-;;;:::i;40391:84::-;;;:::i;96615:19::-;;;:::i;84013:594::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;84013:594:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;45261:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;45261:177:0;;;;;;;;:::i;80662:122::-;;;:::i;38310:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38310:150:0;-1:-1:-1;;;;;38310:150:0;;:::i;83163:182::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;83163:182:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;44585:207;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44585:207:0;;;;;;;;;;:::i;86523:691::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;86523:691:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;40177:161::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40177:161:0;-1:-1:-1;;;;;40177:161:0;;:::i;85288:686::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;85288:686:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;83351:216::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;83351:216:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54802:246;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;54802:246:0;;;;;;;;:::i;8057:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8057:244:0;-1:-1:-1;;;;;8057:244:0;;:::i;96641:381::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;96641:381:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;96641:381:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;96641:381:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;96641:381:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;96641:381:0;;;;;;;;-1:-1:-1;96641:381:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;96641:381:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;96641:381:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;96641:381:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;96641:381:0;;;;;;;;;;;-1:-1:-1;96641:381:0;;;;-1:-1:-1;96641:381:0;;;;-1:-1:-1;;;;5:28;;2:2;;;46:1;43;36:12;2:2;96641:381:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;96641:381:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;-1:-1;;;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;96641:381:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;96641:381:0;;-1:-1:-1;96641:381:0;;-1:-1:-1;;;;;96641:381:0:i;54315:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54315:112:0;-1:-1:-1;;;;;54315:112:0;;:::i;96481:35::-;;;:::i;40530:111::-;36830:10;;40589:13;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;40618:10:::1;;;;;;;;;-1:-1:-1::0;;;;;40618:10:0::1;-1:-1:-1::0;;;;;40618:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;40618:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;40618:17:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;40618:17:0;80:15:-1::0;;::::1;-1:-1:::0;;76:31:::1;65:43:::0;::::1;120:4;113:20:::0;13:2:::1;5:11:::0;::::1;2:2;;;29:1;26::::0;19:12:::1;2:2;40618:17:0;;;;;;;;;;;;;-1:-1:-1::0;;;14:3:::1;11:20;8:2;;;44:1;41::::0;34:12:::1;8:2;62:21:::0;;::::1;::::0;123:4:::1;114:14:::0;::::1;138:31:::0;;::::1;135:2;;;182:1;179::::0;172:12:::1;135:2;213:10:::0;;-1:-1;;;244:29;::::1;285:43:::0;;::::1;282:58:::0;-1:-1;233:115:::1;230:2;;;361:1;358::::0;351:12:::1;230:2;372:25:::0;;-1:-1;40618:17:0;;420:4:-1::1;411:14:::0;;::::1;::::0;40618:17:0;;::::1;::::0;;411:14:-1;40618:17:0;23:1:-1::1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;40618:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;40611:24;;36871:1;40530:111:::0;:::o;44089:169::-;36830:10;;44178:4;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;44194:40:::1;44203:12;:10;:12::i;:::-;44217:8;44227:6;44194:8;:40::i;:::-;-1:-1:-1::0;44248:4:0::1;36871:1;44089:169:::0;;;;:::o;37036:140::-;37115:4;37135:35;:15;37155:14;37135:35;:19;:35;:::i;82376:156::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;:::-;36955:15;:29::i;:::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;82460:28:::1;:10;82478:9:::0;82460:28:::1;:17;:28;:::i;:::-;82500:26;::::0;-1:-1:-1;;;;;82500:26:0;::::1;::::0;::::1;::::0;;;::::1;82376:156:::0;:::o;81316:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;79794:128::-;79856:66;79794:128;:::o;92318:279::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;92443:28;;::::1;92435:45;;;::::0;;-1:-1:-1;;;92435:45:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;92435:45:0;;;;;;;;;;;;;::::1;;92492:9;92487:105;92507:14:::0;;::::1;92487:105;;;92537:47;92551:12;:10;:12::i;:::-;92565:3;;92569:1;92565:6;;;;;;;;;;;;;-1:-1:-1::0;;;;;92565:6:0::1;92573:7;;92581:1;92573:10;;;;;;;;;;;;;92537:13;:47::i;:::-;-1:-1:-1::0;;;92523:3:0::1;;92487:105;;;;92318:279:::0;;;;:::o;82222:148::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;82303:25:::1;:10;82318:9:::0;82303:25:::1;:14;:25;:::i;:::-;82340:24;::::0;-1:-1:-1;;;;;82340:24:0;::::1;::::0;::::1;::::0;;;::::1;82222:148:::0;:::o;41061:119::-;36830:10;;41127:7;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;41150:10:::1;;;;;;;;;-1:-1:-1::0;;;;;41150:10:0::1;-1:-1:-1::0;;;;;41150:22:0::1;;:24;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;41150:24:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;41150:24:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;41150:24:0;;-1:-1:-1;41061:119:0;:::o;54575:144::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;54655:24:::1;:8;54671:7:::0;54655:24:::1;:15;:24;:::i;:::-;54691:22;::::0;-1:-1:-1;;;;;54691:22:0;::::1;::::0;::::1;::::0;;;::::1;54575:144:::0;:::o;89069:731::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;89329:65:::1;89356:5;89363;89370:10;89382:11;89329:26;:65::i;:::-;89423:172;::::0;;80437:66:::1;89423:172;::::0;::::1;::::0;-1:-1:-1;;;;;89423:172:0;;::::1;::::0;;;;;;;;::::1;89403:17;89423:172:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;89423:172:0;;;;;;;89633:16:::1;::::0;89423:172;;;89618:47:::1;::::0;89651:1;89654;89657;89423:172;89618:14:::1;:47::i;:::-;-1:-1:-1::0;;;;;89618:56:0::1;;89602:94;;;::::0;;-1:-1:-1;;;89602:94:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;89602:94:0;;;;;;;;;;;;;::::1;;89705:38;89730:5;89737;89705:24;:38::i;:::-;89750:44;89768:5;89775:7;89784:9;89750:17;:44::i;:::-;36871:1;89069:731:::0;;;;;;;;;:::o;42888:502::-;36830:10;;43032:4;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;43066:10:::1;::::0;-1:-1:-1;;;;;43066:10:0::1;:20;43087:5:::0;43094:12:::1;:10;:12::i;:::-;43066:41;;;;;;;;;;;;;-1:-1:-1::0;;;;;43066:41:0::1;-1:-1:-1::0;;;;;43066:41:0::1;;;;;;-1:-1:-1::0;;;;;43066:41:0::1;-1:-1:-1::0;;;;;43066:41:0::1;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;43066:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;43066:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;43066:41:0;43056:51;::::1;;43048:68;;;::::0;;-1:-1:-1;;;43048:68:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;43048:68:0;;;;;;;;;;;;;::::1;;43124:12;43143:17:::0;43167:21:::1;43233:63;43255:5;43270:3;43283:6;43233:13;:63::i;:::-;43303:10;::::0;43195:101;;-1:-1:-1;43195:101:0;;-1:-1:-1;43195:101:0;-1:-1:-1;;;;;;43303:10:0::1;:27;43331:5:::0;43338:12:::1;:10;:12::i;:::-;43352:13;43303:63;;;;;;;;;;;;;-1:-1:-1::0;;;;;43303:63:0::1;-1:-1:-1::0;;;;;43303:63:0::1;;;;;;-1:-1:-1::0;;;;;43303:63:0::1;-1:-1:-1::0;;;;;43303:63:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;43303:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;43380:4:0::1;::::0;42888:502;-1:-1:-1;;;;;;;;;;42888:502:0:o;38891:99::-;38972:12;;-1:-1:-1;;;;;38972:12:0;38891:99;:::o;97570:348::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;97723:56:::1;:26;97752:27:::0;;97723:56:::1;:::i;:::-;-1:-1:-1::0;97786:27:0::1;:58:::0;;;97856:56:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;97570:348:::0;;;:::o;79310:108::-;79352:66;79310:108;:::o;40882:111::-;36830:10;;40945:5;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;40966:10:::1;;;;;;;;;-1:-1:-1::0;;;;;40966:10:0::1;-1:-1:-1::0;;;;;40966:19:0::1;;:21;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;81165:31:0::0;;;;:::o;38466:193::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;38562:40:::1;:20;38587:14:::0;38562:40:::1;:24;:40;:::i;:::-;38614:39;::::0;-1:-1:-1;;;;;38614:39:0;::::1;::::0;::::1;::::0;;;::::1;38466:193:::0;:::o;41719:468::-;36830:10;;41825:4;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;41841:12:::1;41860:17:::0;41884:21:::1;41950:70;41972:12;:10;:12::i;:::-;41994:3;42007:6;41950:13;:70::i;:::-;41912:108:::0;;-1:-1:-1;41912:108:0;-1:-1:-1;41912:108:0;-1:-1:-1;41912:108:0;42031:27;::::1;;;;42049:9;-1:-1:-1::0;;;;;42042:16:0::1;:3;-1:-1:-1::0;;;;;42042:16:0::1;;42031:27;42027:137;;;42095:9;-1:-1:-1::0;;;;;42079:42:0::1;;42122:12;:10;:12::i;:::-;42136:13;42151:4;;42079:77;;;;;;;;;;;;;-1:-1:-1::0;;;;;42079:77:0::1;-1:-1:-1::0;;;;;42079:77:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;42079:77:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;42079:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42079:77:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;42079:77:0;;-1:-1:-1;42027:137:0::1;-1:-1:-1::0;42177:4:0::1;::::0;41719:468;-1:-1:-1;;;;;;;41719:468:0:o;82540:226::-;81927:24;81938:12;:10;:12::i;:::-;81927:10;:24::i;:::-;81919:41;;;;;-1:-1:-1;;;81919:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;81919:41:0;;;;;;;;;;;;;;;36830:10:::1;::::0;-1:-1:-1;;;;;36830:10:0::1;36814:50;;;::::0;;-1:-1:-1;;;36814:50:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;::::1;;82641:10:::2;::::0;-1:-1:-1;;;;;82641:10:0::2;:15;82657:12;:10;:12::i;:::-;82641:43;::::0;;-1:-1:-1;;;;;;82641:43:0::2;::::0;;;;;;-1:-1:-1;;;;;82641:43:0;;::::2;;::::0;::::2;::::0;;;::::2;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;82641:43:0;;;;;;;-1:-1:-1;82641:43:0;;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;82641:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;82696:18:0::2;::::0;;;;;;;-1:-1:-1;;;;;82696:18:0;::::2;::::0;-1:-1:-1;82696:18:0::2;::::0;-1:-1:-1;82696:18:0;;;;::::2;::::0;;::::2;82726:34;::::0;;;;;;;-1:-1:-1;;;;;82726:34:0;::::2;::::0;82743:1:::2;::::0;-1:-1:-1;;;;;;;;;;;82726:34:0;;;;::::2;::::0;;::::2;82540:226:::0;;:::o;38061:243::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;38183:49:::1;:22;38208:24:::0;;38183:49:::1;:::i;:::-;;38244:54;38273:24;;38244:54;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16:::0;;::::1;74:27:::0;38244:54:0::1;::::0;137:4:-1::1;117:14:::0;;::::1;-1:-1:::0;;113:30:::1;157:16:::0;;::::1;38244:54:0::0;;::::1;::::0;-1:-1:-1;38244:54:0;;-1:-1:-1;;;;38244:54:0::1;38061:243:::0;;:::o;82096:120::-;82165:4;82185:25;:10;82200:9;82185:25;:14;:25;:::i;54057:164::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3508:83;54175:40:::1;54198:5;54205:9;54175:22;:40::i;:::-;3613:14:::0;3609:57;;;3653:5;3638:20;;-1:-1:-1;;3638:20:0;;;3609:57;54057:164;;;:::o;83030:125::-;83077:16;83095;83128:6;83136:12;83120:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83030:125;;:::o;38996:184::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;39090:12:::1;:29:::0;;-1:-1:-1;;;;;;39090:29:0::1;-1:-1:-1::0;;;;;39090:29:0;::::1;::::0;;::::1;::::0;;;39131:43:::1;::::0;::::1;::::0;-1:-1:-1;;39131:43:0::1;38996:184:::0;:::o;54433:136::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;54510:21:::1;:8;54523:7:::0;54510:21:::1;:12;:21;:::i;:::-;54543:20;::::0;-1:-1:-1;;;;;54543:20:0;::::1;::::0;::::1;::::0;;;::::1;54433:136:::0;:::o;90161:545::-;90302:46;90330:10;90342:5;90302:27;:46::i;:::-;90377:88;;;80718:66;90377:88;;;;-1:-1:-1;;;;;90377:88:0;;;;;;;;90357:17;90377:88;;;;;;;;26:21:-1;;;22:32;;;6:49;;90377:88:0;;;;;;;90503:16;;90377:88;;;90488:47;;90521:1;90524;90527;90377:88;90488:14;:47::i;:::-;-1:-1:-1;;;;;90488:61:0;;90472:99;;;;;-1:-1:-1;;;90472:99:0;;;;;;;;;;;;;;;-1:-1:-1;;;90472:99:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;90580:31:0;;;;;;:19;:31;;;;;;;;:38;;;;;;;;;:68;;-1:-1:-1;;90580:68:0;90621:27;90580:68;;;90660:40;90580:38;;:31;90660:40;;;90161:545;;;;;;:::o;45912:187::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;46034:59:::1;46052:12;:10;:12::i;:::-;46066:8;46076:16;46034:17;:59::i;:::-;45912:187:::0;;:::o;96568:42::-;;;;:::o;37358:178::-;7334:12;:10;:12::i;:::-;7324:6;;-1:-1:-1;;;;;7324:6:0;;;:22;;;7316:67;;;;;-1:-1:-1;;;7316:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7316:67:0;;;;;;;;;;;;;;;37444:38:::1;:15;37467:14:::0;37444:38:::1;:22;:38;:::i;:::-;37494:36;::::0;-1:-1:-1;;;;;37494:36:0;::::1;::::0;::::1;::::0;;;::::1;37358:178:::0;:::o;80365:138::-;80437:66;80365:138;:::o;96523:40::-;;;;;;;;;;;;;;;-1:-1:-1;;96523:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42396:145::-;36830:10;;42480:7;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;42507:10:::1;::::0;:28:::1;::::0;;-1:-1:-1;;;42507:28:0;;-1:-1:-1;;;;;42507:28:0;;::::1;;::::0;::::1;::::0;;;:10;;;::::1;::::0;:20:::1;::::0;:28;;;;;::::1;::::0;;;;;;;;:10;:28;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;42507:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;42507:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;42507:28:0;;42396:145;-1:-1:-1;;42396:145:0:o;7754:148::-;7334:12;:10;:12::i;:::-;7324:6;;-1:-1:-1;;;;;7324:6:0;;;:22;;;7316:67;;;;;-1:-1:-1;;;7316:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7316:67:0;;;;;;;;;;;;;;;7845:6:::1;::::0;7824:40:::1;::::0;7861:1:::1;::::0;-1:-1:-1;;;;;7845:6:0::1;::::0;7824:40:::1;::::0;7861:1;;7824:40:::1;7875:6;:19:::0;;-1:-1:-1;;;;;;7875:19:0::1;::::0;;7754:148::o;97166:96::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;97242:14:::1;:5;97250:6:::0;;97242:14:::1;:::i;39186:937::-:0;36830:10;;39328:7;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;39364:12:::1;::::0;-1:-1:-1;;;;;39364:12:0::1;39348:52;;;::::0;;-1:-1:-1;;;39348:52:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;39348:52:0;;;;;;;;;;;;;::::1;;39515:10;::::0;:21:::1;::::0;;-1:-1:-1;;;39515:21:0;;;;39433:7;;39407:23:::1;::::0;;;;;-1:-1:-1;;;;;39515:10:0::1;::::0;:19:::1;::::0;:21:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;:10;:21;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;39515:21:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;39515:21:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;39515:21:0;39568:12:::1;::::0;39590:10:::1;::::0;:19:::1;::::0;;-1:-1:-1;;;39590:19:0;;;;39515:21;;-1:-1:-1;;;;;;39568:12:0;;::::1;::::0;:21:::1;::::0;39590:10;;::::1;::::0;:17:::1;::::0;:19:::1;::::0;;::::1;::::0;39568:12:::1;::::0;39590:19;;;;;;;;:10;:19;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;39590:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;39590:19:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;39590:19:0;80:15:-1::0;;::::1;-1:-1:::0;;76:31:::1;65:43:::0;::::1;120:4;113:20:::0;13:2:::1;5:11:::0;::::1;2:2;;;29:1;26::::0;19:12:::1;2:2;39590:19:0;;;;;;;;;;;;;-1:-1:-1::0;;;14:3:::1;11:20;8:2;;;44:1;41::::0;34:12:::1;8:2;62:21:::0;;::::1;::::0;123:4:::1;114:14:::0;::::1;138:31:::0;;::::1;135:2;;;182:1;179::::0;172:12:::1;135:2;213:10:::0;;-1:-1;;;244:29;::::1;285:43:::0;;::::1;282:58:::0;-1:-1;233:115:::1;230:2;;;361:1;358::::0;351:12:::1;230:2;372:25:::0;;-1:-1;39590:19:0;;420:4:-1::1;411:14:::0;;::::1;::::0;39590:19:0;;::::1;::::0;;411:14:-1;39590:19:0;23:1:-1::1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;39590:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;39611:9;;39568:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;39568:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;39568:53:0;;::::1;::::0;;;;;::::1;;::::0;;;;;1:33:-1::1;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;;39568:53:0;;;;;;;;;;::::0;::::1;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;39568:53:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;39568:53:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;39568:53:0;;::::1;::::0;;::::1;::::0;;;-1:-1:-1;39568:53:0;-1:-1:-1;39632:27:0::1;::::0;;::::1;::::0;;::::1;;39628:145;;;39678:51;:5:::0;39692:36:::1;39700:27:::0;;::::1;39692:36;39688:2;:40;39678:51;:9;:51;:::i;:::-;39670:59;;39754:11;39738:27;;39628:145;39799:11;39783:27;;:13;:27;;;39779:165;;;39839:61;:15:::0;39863:36:::1;39871:27:::0;;::::1;39863:36;39859:2;:40;39839:61;:19;:61;:::i;:::-;39821:79;;39925:11;39909:27;;39779:165;40029:88;40064:52;40073:1;:13:::0;::::1;40072:29:::0;;::::1;:43:::0;;::::1;40064:52;40060:2;:56;40029:26;:15:::0;40049:5;40029:26:::1;:19;:26;:::i;:::-;:30:::0;:88:::1;:30;:88;:::i;:::-;40022:95:::0;39186:937;-1:-1:-1;;;;;;;;;39186:937:0:o;81232:41::-;;;;;;;;;;;;;:::o;83573:319::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;83731:40;;::::1;83723:57;;;::::0;;-1:-1:-1;;;83723:57:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;83723:57:0;;;;;;;;;;;;;::::1;;83787:17;:6;83796:8:::0;;83787:17:::1;:::i;:::-;-1:-1:-1::0;83811:29:0::1;:12;83826:14:::0;;83811:29:::1;:::i;:::-;;83852:34;83865:6;83873:12;83852:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;83573:319:::0;;;;:::o;7112:79::-;7177:6;;-1:-1:-1;;;;;7177:6:0;7112:79;:::o;40698:115::-;36830:10;;40759:13;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;40788:10:::1;;;;;;;;;-1:-1:-1::0;;;;;40788:10:0::1;-1:-1:-1::0;;;;;40788:17:0::1;;:19;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;80068:138:0::0;80140:66;80068:138;:::o;38665:201::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;38764:43:::1;:20;38792:14:::0;38764:43:::1;:27;:43;:::i;:::-;38819:41;::::0;-1:-1:-1;;;;;38819:41:0;::::1;::::0;::::1;::::0;;;::::1;38665:201:::0;:::o;82772:235::-;81927:24;81938:12;:10;:12::i;81927:24::-;81919:41;;;;;-1:-1:-1;;;81919:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;81919:41:0;;;;;;;;;;;;;;;36830:10:::1;::::0;-1:-1:-1;;;;;36830:10:0::1;36814:50;;;::::0;;-1:-1:-1;;;36814:50:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;::::1;;82876:10:::2;::::0;-1:-1:-1;;;;;82876:10:0::2;:15;82892:12;:10;:12::i;:::-;82876:45;::::0;;-1:-1:-1;;;;;;82876:45:0::2;::::0;;;;;;-1:-1:-1;;;;;82876:45:0;;::::2;;::::0;::::2;::::0;;;::::2;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;82876:45:0;;;;;;;-1:-1:-1;82876:45:0;;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;82876:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;82933:20:0::2;::::0;;;;;;;-1:-1:-1;;;;;82933:20:0;::::2;::::0;-1:-1:-1;82933:20:0::2;::::0;-1:-1:-1;82933:20:0;;;;::::2;::::0;;::::2;82965:36;::::0;;;;;;;82989:1:::2;::::0;-1:-1:-1;;;;;82965:36:0;::::2;::::0;-1:-1:-1;;;;;;;;;;;82965:36:0;;;;::::2;::::0;;::::2;82772:235:::0;;:::o;87776:731::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;88036:65:::1;88063:5;88070;88077:10;88089:11;88036:26;:65::i;:::-;88130:172;::::0;;80140:66:::1;88130:172;::::0;::::1;::::0;-1:-1:-1;;;;;88130:172:0;;::::1;::::0;;;;;;;;::::1;88110:17;88130:172:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;88130:172:0;;;;;;;88340:16:::1;::::0;88130:172;;;88325:47:::1;::::0;88358:1;88361;88364;88130:172;88325:14:::1;:47::i;:::-;-1:-1:-1::0;;;;;88325:56:0::1;;88309:94;;;::::0;;-1:-1:-1;;;88309:94:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;88309:94:0;;;;;;;;;;;;;::::1;;88412:38;88437:5;88444;88412:24;:38::i;:::-;88457:44;88475:5;88482:7;88491:9;88457:17;:44::i;79524:129::-:0;79587:66;79524:129;:::o;41402:311::-;36830:10;;41493:4;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;41510:12:::1;41529:17:::0;41553:21:::1;41619:70;41641:12;:10;:12::i;:::-;41663:3;41676:6;41619:13;:70::i;:::-;-1:-1:-1::0;41703:4:0::1;::::0;41402:311;-1:-1:-1;;;;;;;;41402:311:0:o;37562:82::-;37632:6;;-1:-1:-1;;;;;37632:6:0;37562:82;:::o;37650:276::-;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;37758:8;37798:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;37782:28:0::1;:4;-1:-1:-1::0;;;;;37782:10:0::1;;:12;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;37782:12:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;37782:12:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;37782:12:0;-1:-1:-1;;;;;37782:28:0::1;;::::0;:71:::1;;;37814:4;-1:-1:-1::0;;;;;37814:25:0::1;;37840:12;:10;:12::i;:::-;37814:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;37814:39:0::1;-1:-1:-1::0;;;;;37814:39:0::1;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;37814:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;37814:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;37814:39:0;37782:71:::1;37774:88;;;::::0;;-1:-1:-1;;;37774:88:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;37774:88:0;;;;;;;;;;;;;::::1;;37869:6;:17:::0;;-1:-1:-1;;;;;37869:17:0;::::1;-1:-1:-1::0;;;;;;37869:17:0;;::::1;::::0;::::1;::::0;;;37898:22:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;37000:1;37650:276:::0;:::o;37932:123::-;37995:16;38027:22;38020:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38020:29:0;;;;;;;;;;;;;;;;;;;;;;;37932:123;:::o;92884:793::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;93028:28;;::::1;93020:45;;;::::0;;-1:-1:-1;;;93020:45:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;93020:45:0;;;;;;;;;;;;;::::1;;93072:19;::::0;;93137:99:::1;93157:14:::0;;::::1;93137:99;;;93201:27;93217:7;;93225:1;93217:10;;;;;;;;;;;;;93201:11;:15;;:27;;;;:::i;:::-;93187:41:::0;-1:-1:-1;93173:3:0::1;;93137:99;;;-1:-1:-1::0;93265:10:0::1;::::0;-1:-1:-1;;;;;93265:10:0::1;:20;93286:5:::0;93293:12:::1;:10;:12::i;:::-;93265:41;;;;;;;;;;;;;-1:-1:-1::0;;;;;93265:41:0::1;-1:-1:-1::0;;;;;93265:41:0::1;;;;;;-1:-1:-1::0;;;;;93265:41:0::1;-1:-1:-1::0;;;;;93265:41:0::1;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;93265:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;93265:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;93265:41:0;93250:56;::::1;;93242:73;;;::::0;;-1:-1:-1;;;93242:73:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;93242:73:0;;;;;;;;;;;;;::::1;;93328:9;93323:276;93343:14:::0;;::::1;93323:276;;;93373:12;93394:17:::0;93420:21:::1;93488:40;93502:5;93509:3;;93513:1;93509:6;;;;;;;;;;;;;-1:-1:-1::0;;;;;93509:6:0::1;93517:7;;93525:1;93517:10;;;;;;93488:40;93450:78:::0;;-1:-1:-1;93450:78:0;-1:-1:-1;93450:78:0;-1:-1:-1;93556:35:0::1;:16:::0;93450:78;93556:35:::1;:20;:35;:::i;:::-;93537:54:::0;-1:-1:-1;;93359:3:0::1;::::0;;::::1;::::0;-1:-1:-1;93323:276:0::1;::::0;-1:-1:-1;93323:276:0::1;;-1:-1:-1::0;93605:10:0::1;::::0;-1:-1:-1;;;;;93605:10:0::1;:27;93633:5:::0;93640:12:::1;:10;:12::i;:::-;93654:16;93605:66;;;;;;;;;;;;;-1:-1:-1::0;;;;;93605:66:0::1;-1:-1:-1::0;;;;;93605:66:0::1;;;;;;-1:-1:-1::0;;;;;93605:66:0::1;-1:-1:-1::0;;;;;93605:66:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;93605:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;93605:66:0;;;;36871:1;;92884:793:::0;;;;;:::o;37182:170::-;7334:12;:10;:12::i;:::-;7324:6;;-1:-1:-1;;;;;7324:6:0;;;:22;;;7316:67;;;;;-1:-1:-1;;;7316:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7316:67:0;;;;;;;;;;;;;;;37265:35:::1;:15;37285:14:::0;37265:35:::1;:19;:35;:::i;:::-;37312:34;::::0;-1:-1:-1;;;;;37312:34:0;::::1;::::0;::::1;::::0;;;::::1;37182:170:::0;:::o;82005:67::-;7334:12;:10;:12::i;:::-;7324:6;;-1:-1:-1;;;;;7324:6:0;;;:22;;;7316:67;;;;;-1:-1:-1;;;7316:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7316:67:0;;;;;;;;;;;;;;;82052:14:::1;:12;:14::i;:::-;82005:67::o:0;40391:84::-;40459:10;;-1:-1:-1;;;;;40459:10:0;40391:84;:::o;96615:19::-;;;;;;;;;;;;;;;-1:-1:-1;;96615:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84013:594;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;84255:15:::1;84243:8;:27;;84235:44;;;::::0;;-1:-1:-1;;;84235:44:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;84235:44:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;84407:13:0;;::::1;84331:15;84407:13:::0;;;:6:::1;:13;::::0;;;;;;;;:15;;::::1;::::0;::::1;::::0;;;84310:140;;79352:66:::1;84310:140:::0;;::::1;::::0;;;;;;;;;;;;::::1;84290:17;84310:140:::0;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;84310:140:0;;;;;;84492:16:::1;::::0;84477:47:::1;::::0;84510:1;84513;84516;84310:140;84477:14:::1;:47::i;:::-;-1:-1:-1::0;;;;;84477:56:0::1;;84459:100;;;::::0;;-1:-1:-1;;;84459:100:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;84459:100:0;;;;;;;;;;;;;::::1;;84570:31;84579:5;84586:7;84595:5;84570:8;:31::i;:::-;36871:1;84013:594:::0;;;;;;;:::o;45261:177::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;45378:54:::1;45396:12;:10;:12::i;:::-;45410:8;45420:11;45378:17;:54::i;80662:122::-:0;80718:66;80662:122;:::o;38310:150::-;38394:4;38414:40;:20;38439:14;38414:40;:24;:40;:::i;83163:182::-;83265:6;:13;83223:7;;;;83256:22;;83248:39;;;;;-1:-1:-1;;;83248:39:0;;;;;;;;;;;;;;;-1:-1:-1;;;83248:39:0;;;;;;;;;;;;;;;83302:6;83309;83302:14;;;;;;;;;;;;;;;;83318:12;83331:6;83318:20;;;;;;;;;;;;;;;;83294:45;;;;83163:182;;;:::o;44585:207::-;36830:10;;44722:7;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;44748:10:::1;::::0;:38:::1;::::0;;-1:-1:-1;;;44748:38:0;;-1:-1:-1;;;;;44748:38:0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;:10;;;::::1;::::0;:20:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;:10;:38;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;44748:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44748:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;44748:38:0;;44585:207;-1:-1:-1;;;44585:207:0:o;86523:691::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;86770:65:::1;86797:5;86804;86811:10;86823:11;86770:26;:65::i;:::-;86864:158;::::0;;79856:66:::1;86864:158;::::0;::::1;::::0;-1:-1:-1;;;;;86864:158:0;;::::1;::::0;;;;;;;;::::1;86844:17;86864:158:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;86864:158:0;;;;;;;87060:16:::1;::::0;86864:158;;;87045:47:::1;::::0;87078:1;87081;87084;86864:158;87045:14:::1;:47::i;:::-;-1:-1:-1::0;;;;;87045:56:0::1;;87029:94;;;::::0;;-1:-1:-1;;;87029:94:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;87029:94:0;;;;;;;;;;;;;::::1;;87132:38;87157:5;87164;87132:24;:38::i;:::-;87177:31;87186:5;87193:7;87202:5;87177:8;:31::i;40177:161::-:0;36939:12;:10;:12::i;:::-;-1:-1:-1;;;;;36928:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;36928:23:0;;:56;;;;36955:29;36971:12;:10;:12::i;36955:29::-;36920:73;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;-1:-1:-1;;;36920:73:0;;;;;;;;;;;;;;;40256:10:::1;:25:::0;;-1:-1:-1;;;;;;40256:25:0::1;-1:-1:-1::0;;;;;40256:25:0;::::1;::::0;;::::1;::::0;;;40293:39:::1;::::0;::::1;::::0;-1:-1:-1;;40293:39:0::1;40177:161:::0;:::o;85288:686::-;36830:10;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;85539:64:::1;85566:4;85572:5;85579:10;85591:11;85539:26;:64::i;:::-;85632:153;::::0;;79587:66:::1;85632:153;::::0;::::1;::::0;-1:-1:-1;;;;;85632:153:0;;::::1;::::0;;;;;;;;::::1;85612:17;85632:153:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;85632:153:0;;;;;;;85823:16:::1;::::0;85632:153;;;85808:47:::1;::::0;85841:1;85844;85847;85632:153;85808:14:::1;:47::i;:::-;-1:-1:-1::0;;;;;85808:55:0::1;;85792:93;;;::::0;;-1:-1:-1;;;85792:93:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;85792:93:0;;;;;;;;;;;;;::::1;;85894:37;85919:4;85925:5;85894:24;:37::i;:::-;85938:30;85952:4;85958:2;85962:5;85938:13;:30::i;:::-;;;;36871:1;85288:686:::0;;;;;;;;;:::o;83351:216::-;36830:10;;83476:4;;;;;;-1:-1:-1;;;;;36830:10:0;36814:50;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;;;83518:10:::1;::::0;:43:::1;::::0;;-1:-1:-1;;;83518:43:0;;-1:-1:-1;;;;;83518:43:0;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;;;;;;;;;:10;;;::::1;::::0;:22:::1;::::0;:43;;;;;::::1;::::0;;;;;;;;:10;:43;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;83518:43:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;83518:43:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;83518:43:0;;::::1;::::0;::::1;::::0;;;;;;;;;;-1:-1:-1;83518:43:0;-1:-1:-1;83351:216:0;-1:-1:-1;;;;83351:216:0:o;54802:246::-;54264:22;54273:12;:10;:12::i;:::-;54264:8;:22::i;:::-;54256:39;;;;;-1:-1:-1;;;54256:39:0;;;;;;;;;;;;;;;-1:-1:-1;;;54256:39:0;;;;;;;;;;;;;;;36830:10:::1;::::0;-1:-1:-1;;;;;36830:10:0::1;36814:50;;;::::0;;-1:-1:-1;;;36814:50:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;36814:50:0;;;;;;;;;;;;;::::1;;54906:10:::2;::::0;-1:-1:-1;;;;;54906:10:0::2;:16;54923:12;:10;:12::i;:::-;54906:48;::::0;;-1:-1:-1;;;;;;54906:48:0::2;::::0;;;;;;-1:-1:-1;;;;;54906:48:0;;::::2;;::::0;::::2;::::0;;;::::2;::::0;;;;;;;;;;;;;;;;-1:-1:-1;;54906:48:0;;;;;;;-1:-1:-1;54906:48:0;;::::2;;5:2:-1::0;::::2;;;30:1;27::::0;20:12:::2;5:2;54906:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::2;77:16;74:1;67:27;5:2;-1:-1:::0;;54966:23:0::2;::::0;;-1:-1:-1;;;;;54966:23:0;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;::::2;::::0;-1:-1:-1;54966:23:0;;;;;;;;-1:-1:-1;54966:23:0::2;55020:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;55001:40:0::2;55010:8;-1:-1:-1::0;;;;;55001:40:0::2;-1:-1:-1::0;;;;;;;;;;;55034:6:0::2;55001:40;;;;;;;;;;;;;;;;;;54802:246:::0;;:::o;8057:244::-;7334:12;:10;:12::i;:::-;7324:6;;-1:-1:-1;;;;;7324:6:0;;;:22;;;7316:67;;;;;-1:-1:-1;;;7316:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;7316:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;8146:22:0;::::1;8138:73;;;;-1:-1:-1::0;;;8138:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8248:6;::::0;8227:38:::1;::::0;-1:-1:-1;;;;;8227:38:0;;::::1;::::0;8248:6:::1;::::0;8227:38:::1;::::0;8248:6:::1;::::0;8227:38:::1;8276:6;:17:::0;;-1:-1:-1;;;;;;8276:17:0::1;-1:-1:-1::0;;;;;8276:17:0;;;::::1;::::0;;;::::1;::::0;;8057:244::o;96641:381::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3508:83;96876:140:::1;96907:5;96922:9;96941:4;96955:6;96971:8;96988:21;96876:22;:140::i;:::-;3613:14:::0;3609:57;;;3653:5;3638:20;;-1:-1:-1;;3638:20:0;;;3609:57;96641:381;;;;;;;:::o;54315:112::-;54380:4;54400:21;:8;54413:7;54400:21;:12;:21;:::i;96481:35::-;96515:1;96481:35;:::o;5388:106::-;5476:10;5388:106;:::o;47658:180::-;47742:10;;:44;;;-1:-1:-1;;;47742:44:0;;-1:-1:-1;;;;;47742:44:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:18;;:44;;;;;:10;;:44;;;;;;;:10;;:44;;;5:2:-1;;;;30:1;27;20:12;5:2;47742:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;47798:34:0;;;;;;;;-1:-1:-1;;;;;47798:34:0;;;;-1:-1:-1;47798:34:0;;;-1:-1:-1;47798:34:0;;;;;;;;;47658:180;;;:::o;2013:203::-;2085:4;-1:-1:-1;;;;;2110:21:0;;2102:68;;;;-1:-1:-1;;;2102:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;2188:20:0;:11;:20;;;;;;;;;;;;;;;2013:203::o;1735:183::-;1815:18;1819:4;1825:7;1815:3;:18::i;:::-;1807:64;;;;-1:-1:-1;;;1807:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1882:20:0;1905:5;1882:20;;;;;;;;;;;:28;;-1:-1:-1;;1882:28:0;;;1735:183::o;46583:378::-;46775:10;;:73;;;-1:-1:-1;;;46775:73:0;;-1:-1:-1;;;;;46775:73:0;;;;;;;;;;;;;;;;;;;;;;46668:13;;;;;;46775:10;;;:23;;:73;;;;;;;;;;;;;;;46668:13;46775:10;:73;;;5:2:-1;;;;30:1;27;20:12;5:2;46775:73:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46775:73:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46775:73:0;;;;;;;;;;;;46860:43;;;;;;;46775:73;;-1:-1:-1;46775:73:0;;-1:-1:-1;46775:73:0;-1:-1:-1;;;;;;46860:43:0;;;;;;;;-1:-1:-1;;;;;;;;;;;46860:43:0;;;;;;;;;;46583:378;;;;;;;:::o;1477:178::-;1555:18;1559:4;1565:7;1555:3;:18::i;:::-;1554:19;1546:63;;;;;-1:-1:-1;;;1546:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1620:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;1620:27:0;1643:4;1620:27;;;1477:178::o;91428:336::-;91620:10;91602:15;:28;91586:66;;;;;-1:-1:-1;;;91586:66:0;;;;;;;;;;;;;;;-1:-1:-1;;;91586:66:0;;;;;;;;;;;;;;;91685:11;91667:15;:29;91659:46;;;;;-1:-1:-1;;;91659:46:0;;;;;;;;;;;;;;;-1:-1:-1;;;91659:46:0;;;;;;;;;;;;;;;91712;91740:10;91752:5;91712:27;:46::i;:::-;91428:336;;;;:::o;76143:449::-;76480:26;;;;;;;;;;76382:139;;;-1:-1:-1;;;76382:139:0;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;76382:139:0;;;;76358:174;;;;;76321:7;;76550:34;76358:174;76576:1;76579;76582;76550:17;:34::i;:::-;76543:41;76143:449;-1:-1:-1;;;;;;;76143:449:0:o;91926:204::-;-1:-1:-1;;;;;92012:31:0;;;;;;:19;:31;;;;;;;;:38;;;;;;;;;:64;;-1:-1:-1;;92012:64:0;92053:23;92012:64;;;92088:36;92012:38;;:31;92088:36;;;91926:204;;:::o;48698:279::-;48798:10;;:63;;;-1:-1:-1;;;48798:63:0;;-1:-1:-1;;;;;48798:63:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:63;;;;;:10;;:63;;;;;;;:10;;:63;;;5:2:-1;;;;30:1;27;20:12;5:2;48798:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;48886:10:0;;:38;;;-1:-1:-1;;;48886:38:0;;-1:-1:-1;;;;;48886:38:0;;;;;;;;;;;;;;;;48868:15;;-1:-1:-1;48886:10:0;;;;;-1:-1:-1;48886:20:0;;:38;;;;;;;;;;;;;;;:10;:38;;;5:2:-1;;;;30:1;27;20:12;5:2;48886:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48886:38:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48886:38:0;48936:35;;;;;;;;48886:38;;-1:-1:-1;;;;;;48936:35:0;;;;;;;;;;;;;;48886:38;48936:35;;;48698:279;;;;:::o;3760:508::-;4177:4;4223:17;4255:7;3760:508;:::o;36479:298::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3508:83;36573:16:::1;:14;:16::i;:::-;36596:24;36614:5;36596:17;:24::i;:::-;36627:10;:25:::0;;-1:-1:-1;;;;;36627:25:0;::::1;-1:-1:-1::0;;;;;;36627:25:0;;::::1;::::0;::::1;::::0;;;36659:6:::1;:22:::0;;;;::::1;36676:4;36659:22;::::0;;36693:39:::1;::::0;::::1;::::0;36627:10:::1;::::0;36693:39:::1;36744:27;::::0;;36765:4:::1;36744:27:::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;3613:14:::0;3609:57;;;3653:5;3638:20;;-1:-1:-1;;3638:20:0;;;36479:298;;;:::o;90911:204::-;-1:-1:-1;;;;;91020:31:0;;91062:25;91020:31;;;:19;:31;;;;;;;;:38;;;;;;;;;;;:67;;;;;;;;;91004:105;;;;;-1:-1:-1;;;91004:105:0;;;;;;;;;;;;;;;-1:-1:-1;;;91004:105:0;;;;;;;;;;;;;;11551:132;11609:7;11636:39;11640:1;11643;11636:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;11629:46;11551:132;-1:-1:-1;;;11551:132:0:o;10612:471::-;10670:7;10915:6;10911:47;;-1:-1:-1;10945:1:0;10938:8;;10911:47;10982:5;;;10986:1;10982;:5;:1;11006:5;;;;;:10;10998:56;;;;-1:-1:-1;;;10998:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48131:269;48226:10;;:58;;;-1:-1:-1;;;48226:58:0;;-1:-1:-1;;;;;48226:58:0;;;;;;;;;;;;;;;;;;;;;;:10;;;;;:27;;:58;;;;;:10;;:58;;;;;;;:10;;:58;;;5:2:-1;;;;30:1;27;20:12;9282:181:0;9340:7;9372:5;;;9396:6;;;;9388:46;;;;;-1:-1:-1;;;9388:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;93715:115;93801:10;;:17;;;-1:-1:-1;;;93801:17:0;;;;93774:50;;-1:-1:-1;;;;;93801:10:0;;:15;;:17;;;;;:10;;:17;;;;;;;:10;:17;;;5:2:-1;;;;30:1;27;20:12;5:2;93801:17:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93801:17:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;93801:17:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;13:2;5:11;;2:2;;;29:1;26;19:12;2:2;93801:17:0;;;;;;;;;;;;;-1:-1:-1;;;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;-1:-1;;;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;372:25;;-1:-1;93801:17:0;;420:4:-1;411:14;;;;93801:17:0;;;;;411:14:-1;93801:17:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;93801:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;93801:17:0;93774:50;;;;;;;;-1:-1:-1;;;93774:50:0;;;;93801:17;-1:-1:-1;93774:26:0;;-1:-1:-1;;93774:50:0:i;:::-;93755:16;:69;93715:115::o;81408:474::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3508:83;81642:48:::1;81673:5;81680:9;81642:30;:48::i;:::-;81697:9;-1:-1:-1::0;;;;;81697:18:0::1;;81716:4;81722:6;81730:8;81697:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;81697:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;81697:42:0;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;23:1:-1::1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;81697:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;81697:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;81746:46:0;;::::1;::::0;-1:-1:-1;81746:22:0::1;::::0;-1:-1:-1;81746:46:0::1;::::0;::::1;::::0;::::1;:::i;:::-;;81804:51;81833:21;81804:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11:::0;;::::1;84:18:::0;71:11;;::::1;64:39:::0;52:2:::1;45:10;8:100;;;12:14;81804:51:0;;;;;;;;;;;;;;;;;81862:14;:12;:14::i;71909:1587::-:0;72039:7;72986:66;72960:92;;72942:197;;;73079:48;;-1:-1:-1;;;73079:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72942:197;73155:1;:7;;73160:2;73155:7;;:18;;;;;73166:1;:7;;73171:2;73166:7;;73155:18;73151:99;;;73190:48;;-1:-1:-1;;;73190:48:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73151:99;73364:26;;;73347:14;73364:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73347:14;;73364:26;;;;;;;-1:-1:-1;;73364:26:0;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;73364:26:0;;-1:-1:-1;;73364:26:0;;;-1:-1:-1;;;;;;;73409:20:0;;73401:61;;;;;-1:-1:-1;;;73401:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;73482:6;71909:1587;-1:-1:-1;;;;;71909:1587:0:o;6690:129::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3508:83;6748:26:::1;:24;:26::i;:::-;6785;:24;:26::i;:::-;3613:14:::0;3609:57;;;3653:5;3638:20;;-1:-1:-1;;3638:20:0;;;3609:57;6690:129;:::o;12171:345::-;12257:7;12359:12;12352:5;12344:28;;;;-1:-1:-1;;;12344:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;12344:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12383:9;12399:1;12395;:5;;;;;;;12171:345;-1:-1:-1;;;;;12171:345:0:o;75039:708::-;75569:22;;;;;;;75614:25;;;;;;;;;75325:399;;;75358:66;75325:399;;;;;;;;;;;;;;;;;;75247:9;75325:399;;;;75700:4;75325:399;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;75325:399:0;;;;;;75297:442;;;;;;75039:708::o;5309:69::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3613:14;3609:57;;;3653:5;3638:20;;-1:-1:-1;;3638:20:0;;;5309:69;:::o;6827:202::-;3359:12;;;;;;;;:31;;;3375:15;:13;:15::i;:::-;3359:47;;;-1:-1:-1;3395:11:0;;;;3394:12;3359:47;3351:106;;;;-1:-1:-1;;;3351:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3466:19;3489:12;;;;;;3488:13;3508:83;;;;3537:12;:19;;-1:-1:-1;;;;3537:19:0;;;;;3565:18;3552:4;3565:18;;;3508:83;6899:17:::1;6919:12;:10;:12::i;:::-;6942:6;:18:::0;;-1:-1:-1;;;;;;6942:18:0::1;-1:-1:-1::0;;;;;6942:18:0;::::1;::::0;;::::1;::::0;;;6976:43:::1;::::0;6942:18;;-1:-1:-1;6942:18:0;-1:-1:-1;;6976:43:0::1;::::0;-1:-1:-1;;6976:43:0::1;3599:1;3613:14:::0;3609:57;;;3653:5;3638:20;;-1:-1:-1;;3638:20:0;;;6827:202;:::o;96169:1914::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;96169:1914:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;96169:1914:0;;;-1:-1:-1;96169:1914:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;96169:1914:0;-1:-1:-1;;;;;96169:1914:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;96169:1914:0;;;-1:-1:-1;96169:1914:0;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;96169:1914:0;-1:-1:-1;;;;;96169:1914:0;;;;;;;;;;;-1:-1:-1;96169:1914:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;96169:1914:0;;;;;;

Swarm Source

ipfs://3658da9188448a0ea6ad8f4cbb05045cab98dd471ea877462350533fbf211b67

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.