Contract Overview
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0xa19a7229883c3156c7f9e20096ef92bdf9efb002586427446dee1202914632d4 | Initialize | 55271040 | 50 days 12 hrs ago | 0x2fdbbd68f0351657739066c53afddf56308f39b8 | IN | 0x106119d7ca74451dedd3a9c67345473785e5fe18 | 0 FTM | 0.043090402203 | |
0x621bf3d8c94773349f3846188d8a20d227917dcaaeef08e1cab7777932ad5029 | 0x60806040 | 55269858 | 50 days 12 hrs ago | 0x2fdbbd68f0351657739066c53afddf56308f39b8 | IN | Create: Treasury | 0 FTM | 0.220473815362 |
[ Download CSV Export ]
Latest 1 internal transaction
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x621bf3d8c94773349f3846188d8a20d227917dcaaeef08e1cab7777932ad5029 | 55269858 | 50 days 12 hrs ago | 0x2fdbbd68f0351657739066c53afddf56308f39b8 | Contract Creation | 0 FTM |
[ Download CSV Export ]
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
Treasury
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at FtmScan.com on 2023-02-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow, so we distribute return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2); } } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: 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 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { 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; } } contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } contract ContractGuard { mapping(uint256 => mapping(address => bool)) private _status; function checkSameOriginReentranted() internal view returns (bool) { return _status[block.number][tx.origin]; } function checkSameSenderReentranted() internal view returns (bool) { return _status[block.number][msg.sender]; } modifier onlyOneBlock() { require(!checkSameOriginReentranted(), "ContractGuard: one block, one function"); require(!checkSameSenderReentranted(), "ContractGuard: one block, one function"); _; _status[block.number][tx.origin] = true; _status[block.number][msg.sender] = true; } } library Babylonian { function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } // else z = 0 } } interface IOracle { function update() external; function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut); function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut); } interface IBasisAsset { function mint(address recipient, uint256 amount) external returns (bool); function burn(uint256 amount) external; function burnFrom(address from, uint256 amount) external; function isOperator() external returns (bool); function operator() external view returns (address); function transferOperator(address newOperator_) external; } interface IMasonry { function balanceOf(address _mason) external view returns (uint256); function earned(address _mason) external view returns (uint256); function canWithdraw(address _mason) external view returns (bool); function canClaimReward(address _mason) external view returns (bool); function epoch() external view returns (uint256); function nextEpochPoint() external view returns (uint256); function getAmazePrice() external view returns (uint256); function setOperator(address _operator) external; function setLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external; function stake(uint256 _amount) external; function withdraw(uint256 _amount) external; function exit() external; function claimReward() external; function allocateSeigniorage(uint256 _amount) external; function governanceRecoverUnsupported(address _token, uint256 _amount, address _to) external; } contract Treasury is ContractGuard { using SafeERC20 for IERC20; using Address for address; using SafeMath for uint256; /* ========= CONSTANT VARIABLES ======== */ uint256 public constant PERIOD = 6 hours; /* ========== STATE VARIABLES ========== */ // governance address public operator; // flags bool public initialized = false; // epoch uint256 public startTime; uint256 public epoch = 0; uint256 public epochSupplyContractionLeft = 0; // core components address public amaze; address public abond; address public ashare; address public masonry; address public amazeOracle; // price uint256 public amazePriceOne; uint256 public amazePriceCeiling; uint256 public seigniorageSaved; uint256[] public supplyTiers; uint256[] public maxExpansionTiers; uint256 public maxSupplyExpansionPercent; uint256 public bondDepletionFloorPercent; uint256 public seigniorageExpansionFloorPercent; uint256 public maxSupplyContractionPercent; uint256 public maxDebtRatioPercent; // 28 first epochs (1 week) with 4.5% expansion regardless of AMAZE price uint256 public bootstrapEpochs; uint256 public bootstrapSupplyExpansionPercent; /* =================== Added variables =================== */ uint256 public previousEpochAmazePrice; uint256 public maxDiscountRate; // when purchasing bond uint256 public maxPremiumRate; // when redeeming bond uint256 public discountPercent; uint256 public premiumThreshold; uint256 public premiumPercent; uint256 public mintingFactorForPayingDebt; // print extra AMAZE during debt phase address public daoFund; uint256 public daoFundSharedPercent; address public devFund; uint256 public devFundSharedPercent; /* =================== Events =================== */ event Initialized(address indexed executor, uint256 at); event BurnedBonds(address indexed from, uint256 bondAmount); event RedeemedBonds(address indexed from, uint256 amazeAmount, uint256 bondAmount); event BoughrBonds(address indexed from, uint256 amazeAmount, uint256 bondAmount); event TreasuryFunded(uint256 timestamp, uint256 seigniorage); event MasonryFunded(uint256 timestamp, uint256 seigniorage); event DaoFundFunded(uint256 timestamp, uint256 seigniorage); event DevFundFunded(uint256 timestamp, uint256 seigniorage); /* =================== Modifier =================== */ modifier onlyOperator() { require(operator == msg.sender, "Treasury: caller is not the operator"); _; } modifier checkCondition { require(now >= startTime, "Treasury: not started yet"); _; } modifier checkEpoch { require(now >= nextEpochPoint(), "Treasury: not opened yet"); _; epoch = epoch.add(1); epochSupplyContractionLeft = (getAmazePrice() > amazePriceCeiling) ? 0 : IERC20(amaze).totalSupply().mul(maxSupplyContractionPercent).div(10000); } modifier checkOperator { require( IBasisAsset(amaze).operator() == address(this) && IBasisAsset(abond).operator() == address(this) && IBasisAsset(ashare).operator() == address(this) && Operator(masonry).operator() == address(this), "Treasury: need more permission" ); _; } modifier notInitialized { require(!initialized, "Treasury: already initialized"); _; } /* ========== VIEW FUNCTIONS ========== */ function isInitialized() public view returns (bool) { return initialized; } // epoch function nextEpochPoint() public view returns (uint256) { return startTime.add(epoch.mul(PERIOD)); } // oracle function getAmazePrice() public view returns (uint256 amazePrice) { try IOracle(amazeOracle).consult(amaze, 1e18) returns (uint144 price) { return uint256(price); } catch { revert("Treasury: failed to consult AMAZE price from the oracle"); } } function getAmazeUpdatedPrice() public view returns (uint256 _amazePrice) { try IOracle(amazeOracle).twap(amaze, 1e18) returns (uint144 price) { return uint256(price); } catch { revert("Treasury: failed to consult AMAZE price from the oracle"); } } // budget function getReserve() public view returns (uint256) { return seigniorageSaved; } function getBurnableAmazeLeft() public view returns (uint256 _burnableAmazeLeft) { uint256 _amazePrice = getAmazePrice(); if (_amazePrice <= amazePriceOne) { uint256 _amazeSupply = IERC20(amaze).totalSupply(); uint256 _bondMaxSupply = _amazeSupply.mul(maxDebtRatioPercent).div(10000); uint256 _bondSupply = IERC20(abond).totalSupply(); if (_bondMaxSupply > _bondSupply) { uint256 _maxMintableBond = _bondMaxSupply.sub(_bondSupply); uint256 _maxBurnableAmaze = _maxMintableBond.mul(_amazePrice).div(1e18); _burnableAmazeLeft = Math.min(epochSupplyContractionLeft, _maxBurnableAmaze); } } } function getRedeemableBonds() public view returns (uint256 _redeemableBonds) { uint256 _amazePrice = getAmazePrice(); if (_amazePrice > amazePriceCeiling) { uint256 _totalAmaze = IERC20(amaze).balanceOf(address(this)); uint256 _rate = gerBondPremiumRate(); if (_rate > 0) { _redeemableBonds = _totalAmaze.mul(1e18).div(_rate); } } } function gerBondDiscountRate() public view returns (uint256 _rate) { uint256 _amazePrice = getAmazePrice(); if (_amazePrice <= amazePriceOne) { if (discountPercent == 0) { // no discount _rate = amazePriceOne; } else { uint256 _bondAmount = amazePriceOne.mul(1e18).div(_amazePrice); // to burn 1 AMAZE uint256 _discountAmount = _bondAmount.sub(amazePriceOne).mul(discountPercent).div(10000); _rate = amazePriceOne.add(_discountAmount); if (maxDiscountRate > 0 && _rate > maxDiscountRate) { _rate = maxDiscountRate; } } } } function gerBondPremiumRate() public view returns (uint256 _rate) { uint256 _amazePrice = getAmazePrice(); if (_amazePrice > amazePriceCeiling) { uint256 _amazePricePremiumThreshold = amazePriceOne.mul(premiumThreshold).div(100); if (_amazePrice >= _amazePricePremiumThreshold) { //Price > 1.10 uint256 _premiumAmount = _amazePrice.sub(amazePriceOne).mul(premiumPercent).div(10000); _rate = amazePriceOne.add(_premiumAmount); if (maxPremiumRate > 0 && _rate > maxPremiumRate) { _rate = maxPremiumRate; } } else { // no premium bonus _rate = amazePriceOne; } } } /* ========== GOVERNANCE ========== */ function initialize( address _amaze, address _abond, address _ashare, address _amazeOracle, address _masonry, uint256 _startTime ) public notInitialized { amaze = _amaze; abond = _abond; ashare = _ashare; amazeOracle = _amazeOracle; masonry = _masonry; startTime = _startTime; amazePriceOne = 10**18; amazePriceCeiling = amazePriceOne.mul(101).div(100); // Dynamic max expansion percent supplyTiers = [0 ether, 500000 ether, 1000000 ether, 1500000 ether, 2000000 ether, 5000000 ether, 10000000 ether, 20000000 ether, 50000000 ether]; maxExpansionTiers = [450, 400, 350, 300, 250, 200, 150, 125, 100]; maxSupplyExpansionPercent = 400; // Upto 4.0% supply for expansion bondDepletionFloorPercent = 10000; // 100% of Bond supply for depletion floor seigniorageExpansionFloorPercent = 3500; // At least 35% of expansion reserved for masonry maxSupplyContractionPercent = 300; // Upto 3.0% supply for contraction (to burn AMAZE and mint rBOND) maxDebtRatioPercent = 3500; // Upto 35% supply of rBOND to purchase premiumThreshold = 110; premiumPercent = 7000; // First 28 epochs with 4.5% expansion bootstrapEpochs = 28; bootstrapSupplyExpansionPercent = 450; // set seigniorageSaved to it's balance seigniorageSaved = IERC20(amaze).balanceOf(address(this)); initialized = true; operator = msg.sender; emit Initialized(msg.sender, block.number); } function setOperator(address _operator) external onlyOperator { operator = _operator; } function setMasonry(address _masonry) external onlyOperator { masonry = _masonry; } function setAmazeOracle(address _amazeOracle) external onlyOperator { amazeOracle = _amazeOracle; } function setAmazePriceCeiling(uint256 _amazePriceCeiling) external onlyOperator { require(_amazePriceCeiling >= amazePriceOne && _amazePriceCeiling <= amazePriceOne.mul(120).div(100), "out of range"); // [$1.0, $1.2] amazePriceCeiling = _amazePriceCeiling; } function setMaxSupplyExpansionPercents(uint256 _maxSupplyExpansionPercent) external onlyOperator { require(_maxSupplyExpansionPercent >= 10 && _maxSupplyExpansionPercent <= 1000, "_maxSupplyExpansionPercent: out of range"); // [0.1%, 10%] maxSupplyExpansionPercent = _maxSupplyExpansionPercent; } function setSupplyTiersEntry(uint8 _index, uint256 _value) external onlyOperator returns (bool){ require(_index >= 0, "Index has to be higher than 0"); require(_index < 9, "Index has to be lower than count of tiers"); if (_index > 0) { require(_value > supplyTiers[_index - 1]); } if (_index < 8) { require(_value < supplyTiers[_index + 1]); } supplyTiers[_index] = _value; return true; } function setMaxExpansionTiersEntry(uint8 _index, uint256 _value) external onlyOperator returns (bool){ require(_index >= 0, "Index has to be higher than 0"); require(_index < 9, "Index has to be lower than count of tiers"); require(_value >= 10 && _value <= 1000, "_value: out of range"); // [0.1%, 10%] maxExpansionTiers[_index] = _value; return true; } function serBondDepletionFloorPercent(uint256 _bondDepletionFloorPercent) external onlyOperator { require(_bondDepletionFloorPercent >= 500 && _bondDepletionFloorPercent <= 10000, "out of range"); // [5%, 100%] bondDepletionFloorPercent = _bondDepletionFloorPercent; } function setMaxSupplyContractionPercent(uint256 _maxSupplyContractionPercent) external onlyOperator { require(_maxSupplyContractionPercent >= 100 && _maxSupplyContractionPercent <= 1500, "out of range"); // [0.1%, 15%] maxSupplyContractionPercent = _maxSupplyContractionPercent; } function setMaxDebtRatioPercent(uint256 _maxDebtRatioPercent) external onlyOperator { require(_maxDebtRatioPercent >= 1000 && _maxDebtRatioPercent <= 10000, "out of range"); // [10%, 100%] maxDebtRatioPercent = _maxDebtRatioPercent; } function setBootstrap(uint256 _bootstrapEpochs, uint256 _bootstrapSupplyExpansionPercent) external onlyOperator { require(_bootstrapEpochs <= 120, "_bootstrapEpochs: out of range"); // <= 1 month require(_bootstrapSupplyExpansionPercent >= 100 && _bootstrapSupplyExpansionPercent <= 1000, "_bootstrapSupplyExpansionPercent: out of range"); // [1%, 10%] bootstrapEpochs = _bootstrapEpochs; bootstrapSupplyExpansionPercent = _bootstrapSupplyExpansionPercent; } function setExtraFunds( address _daoFund, uint256 _daoFundSharedPercent, address _devFund, uint256 _devFundSharedPercent ) external onlyOperator { require(_daoFund != address(0), "zero"); require(_daoFundSharedPercent <= 1000, "out of range"); // <= 30% require(_devFund != address(0), "zero"); require(_devFundSharedPercent <= 500, "out of range"); // <= 10% daoFund = _daoFund; daoFundSharedPercent = _daoFundSharedPercent; devFund = _devFund; devFundSharedPercent = _devFundSharedPercent; } function setMaxDiscountRate(uint256 _maxDiscountRate) external onlyOperator { maxDiscountRate = _maxDiscountRate; } function setMaxPremiumRate(uint256 _maxPremiumRate) external onlyOperator { maxPremiumRate = _maxPremiumRate; } function setDiscountPercent(uint256 _discountPercent) external onlyOperator { require(_discountPercent <= 20000, "_discountPercent is over 200%"); discountPercent = _discountPercent; } function setPremiumThreshold(uint256 _premiumThreshold) external onlyOperator { require(_premiumThreshold >= amazePriceCeiling, "_premiumThreshold exceeds amazePriceCeiling"); require(_premiumThreshold <= 150, "_premiumThreshold is higher than 1.5"); premiumThreshold = _premiumThreshold; } function setPremiumPercent(uint256 _premiumPercent) external onlyOperator { require(_premiumPercent <= 20000, "_premiumPercent is over 200%"); premiumPercent = _premiumPercent; } function setMintingFactorForPayingDebt(uint256 _mintingFactorForPayingDebt) external onlyOperator { require(_mintingFactorForPayingDebt >= 10000 && _mintingFactorForPayingDebt <= 20000, "_mintingFactorForPayingDebt: out of range"); // [100%, 200%] mintingFactorForPayingDebt = _mintingFactorForPayingDebt; } /* ========== MUTABLE FUNCTIONS ========== */ function _updateAmazePrice() internal { try IOracle(amazeOracle).update() {} catch {} } function buyBonds(uint256 _amazeAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_amazeAmount > 0, "Treasury: cannot purchase bonds with zero amount"); uint256 amazePrice = getAmazePrice(); require(amazePrice == targetPrice, "Treasury: AMAZE price moved"); require( amazePrice < amazePriceOne, // price < $1 "Treasury: amazePrice not eligible for bond purchase" ); require(_amazeAmount <= epochSupplyContractionLeft, "Treasury: not enough bond left to purchase"); uint256 _rate = gerBondDiscountRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _bondAmount = _amazeAmount.mul(_rate).div(1e18); uint256 amazeSupply = IERC20(amaze).totalSupply(); uint256 newBondSupply = IERC20(abond).totalSupply().add(_bondAmount); require(newBondSupply <= amazeSupply.mul(maxDebtRatioPercent).div(10000), "over max debt ratio"); IBasisAsset(amaze).burnFrom(msg.sender, _amazeAmount); IBasisAsset(abond).mint(msg.sender, _bondAmount); epochSupplyContractionLeft = epochSupplyContractionLeft.sub(_amazeAmount); _updateAmazePrice(); emit BoughrBonds(msg.sender, _amazeAmount, _bondAmount); } function redeemBonds(uint256 _bondAmount, uint256 targetPrice) external onlyOneBlock checkCondition checkOperator { require(_bondAmount > 0, "Treasury: cannot redeem bonds with zero amount"); uint256 amazePrice = getAmazePrice(); require(amazePrice == targetPrice, "Treasury: AMAZE price moved"); require( amazePrice > amazePriceCeiling, // price > $1.01 "Treasury: amazePrice not eligible for bond purchase" ); uint256 _rate = gerBondPremiumRate(); require(_rate > 0, "Treasury: invalid bond rate"); uint256 _amazeAmount = _bondAmount.mul(_rate).div(1e18); require(IERC20(amaze).balanceOf(address(this)) >= _amazeAmount, "Treasury: treasury has no more budget"); seigniorageSaved = seigniorageSaved.sub(Math.min(seigniorageSaved, _amazeAmount)); IBasisAsset(abond).burnFrom(msg.sender, _bondAmount); IERC20(amaze).safeTransfer(msg.sender, _amazeAmount); _updateAmazePrice(); emit RedeemedBonds(msg.sender, _amazeAmount, _bondAmount); } function _sendToMasonry(uint256 _amount) internal { IBasisAsset(amaze).mint(address(this), _amount); uint256 _daoFundSharedAmount = 0; if (daoFundSharedPercent > 0) { _daoFundSharedAmount = _amount.mul(daoFundSharedPercent).div(10000); IERC20(amaze).transfer(daoFund, _daoFundSharedAmount); emit DaoFundFunded(now, _daoFundSharedAmount); } uint256 _devFundSharedAmount = 0; if (devFundSharedPercent > 0) { _devFundSharedAmount = _amount.mul(devFundSharedPercent).div(10000); IERC20(amaze).transfer(devFund, _devFundSharedAmount); emit DevFundFunded(now, _devFundSharedAmount); } _amount = _amount.sub(_daoFundSharedAmount).sub(_devFundSharedAmount); IERC20(amaze).safeApprove(masonry, 0); IERC20(amaze).safeApprove(masonry, _amount); IMasonry(masonry).allocateSeigniorage(_amount); emit MasonryFunded(now, _amount); } function _calculateMaxSupplyExpansionPercent(uint256 _amazeSupply) internal returns (uint256) { for (uint8 tierId = 8; tierId >= 0; --tierId) { if (_amazeSupply >= supplyTiers[tierId]) { maxSupplyExpansionPercent = maxExpansionTiers[tierId]; break; } } return maxSupplyExpansionPercent; } function allocateSeigniorage() external onlyOneBlock checkCondition checkEpoch checkOperator { _updateAmazePrice(); previousEpochAmazePrice = getAmazePrice(); uint256 amazeSupply = IERC20(amaze).totalSupply().sub(seigniorageSaved); if (epoch < bootstrapEpochs) { // 28 first epochs with 4.5% expansion _sendToMasonry(amazeSupply.mul(bootstrapSupplyExpansionPercent).div(10000)); } else { if (previousEpochAmazePrice > amazePriceCeiling) { // Expansion ($AMAZE Price > 1 $FTM): there is some seigniorage to be allocated uint256 bondSupply = IERC20(abond).totalSupply(); uint256 _percentage = previousEpochAmazePrice.sub(amazePriceOne); uint256 _savedForBond; uint256 _savedForMasonry; uint256 _mse = _calculateMaxSupplyExpansionPercent(amazeSupply).mul(1e14); if (_percentage > _mse) { _percentage = _mse; } if (seigniorageSaved >= bondSupply.mul(bondDepletionFloorPercent).div(10000)) { // saved enough to pay debt, mint as usual rate _savedForMasonry = amazeSupply.mul(_percentage).div(1e18); } else { // have not saved enough to pay debt, mint more uint256 _seigniorage = amazeSupply.mul(_percentage).div(1e18); _savedForMasonry = _seigniorage.mul(seigniorageExpansionFloorPercent).div(10000); _savedForBond = _seigniorage.sub(_savedForMasonry); if (mintingFactorForPayingDebt > 0) { _savedForBond = _savedForBond.mul(mintingFactorForPayingDebt).div(10000); } } if (_savedForMasonry > 0) { _sendToMasonry(_savedForMasonry); } if (_savedForBond > 0) { seigniorageSaved = seigniorageSaved.add(_savedForBond); IBasisAsset(amaze).mint(address(this), _savedForBond); emit TreasuryFunded(now, _savedForBond); } } } } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { // do not allow to drain core tokens require(address(_token) != address(amaze), "amaze"); require(address(_token) != address(abond), "abond"); require(address(_token) != address(ashare), "ashare"); _token.safeTransfer(_to, _amount); } function amazeSetOperator(address _operator) external onlyOperator { IBasisAsset(amaze).transferOperator(_operator); } function ashareSetOperator(address _operator) external onlyOperator { IBasisAsset(ashare).transferOperator(_operator); } function abondSetOperator(address _operator) external onlyOperator { IBasisAsset(abond).transferOperator(_operator); } function masonrySetOperator(address _operator) external onlyOperator { IMasonry(masonry).setOperator(_operator); } function masonrySetLockUp(uint256 _withdrawLockupEpochs, uint256 _rewardLockupEpochs) external onlyOperator { IMasonry(masonry).setLockUp(_withdrawLockupEpochs, _rewardLockupEpochs); } function masonryAllocateSeigniorage(uint256 amount) external onlyOperator { IMasonry(masonry).allocateSeigniorage(amount); } function masonryGovernanceRecoverUnsupported( address _token, uint256 _amount, address _to ) external onlyOperator { IMasonry(masonry).governanceRecoverUnsupported(_token, _amount, _to); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amazeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BoughrBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"BurnedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DaoFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"DevFundFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":false,"internalType":"uint256","name":"at","type":"uint256"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"MasonryFunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amazeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"bondAmount","type":"uint256"}],"name":"RedeemedBonds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"seigniorage","type":"uint256"}],"name":"TreasuryFunded","type":"event"},{"inputs":[],"name":"PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"abond","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"abondSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amaze","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amazeOracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amazePriceCeiling","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amazePriceOne","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"amazeSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ashare","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"ashareSetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"bondDepletionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bootstrapEpochs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bootstrapSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amazeAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"buyBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"daoFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devFundSharedPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epochSupplyContractionLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gerBondDiscountRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gerBondPremiumRate","outputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmazePrice","outputs":[{"internalType":"uint256","name":"amazePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAmazeUpdatedPrice","outputs":[{"internalType":"uint256","name":"_amazePrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBurnableAmazeLeft","outputs":[{"internalType":"uint256","name":"_burnableAmazeLeft","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRedeemableBonds","outputs":[{"internalType":"uint256","name":"_redeemableBonds","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_amaze","type":"address"},{"internalType":"address","name":"_abond","type":"address"},{"internalType":"address","name":"_ashare","type":"address"},{"internalType":"address","name":"_amazeOracle","type":"address"},{"internalType":"address","name":"_masonry","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"masonry","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"masonryAllocateSeigniorage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"masonryGovernanceRecoverUnsupported","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawLockupEpochs","type":"uint256"},{"internalType":"uint256","name":"_rewardLockupEpochs","type":"uint256"}],"name":"masonrySetLockUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"masonrySetOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxDebtRatioPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDiscountRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxExpansionTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPremiumRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyContractionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyExpansionPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintingFactorForPayingDebt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextEpochPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premiumThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previousEpochAmazePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondAmount","type":"uint256"},{"internalType":"uint256","name":"targetPrice","type":"uint256"}],"name":"redeemBonds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"seigniorageExpansionFloorPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"seigniorageSaved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bondDepletionFloorPercent","type":"uint256"}],"name":"serBondDepletionFloorPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_amazeOracle","type":"address"}],"name":"setAmazeOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amazePriceCeiling","type":"uint256"}],"name":"setAmazePriceCeiling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_bootstrapEpochs","type":"uint256"},{"internalType":"uint256","name":"_bootstrapSupplyExpansionPercent","type":"uint256"}],"name":"setBootstrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountPercent","type":"uint256"}],"name":"setDiscountPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"uint256","name":"_daoFundSharedPercent","type":"uint256"},{"internalType":"address","name":"_devFund","type":"address"},{"internalType":"uint256","name":"_devFundSharedPercent","type":"uint256"}],"name":"setExtraFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_masonry","type":"address"}],"name":"setMasonry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDebtRatioPercent","type":"uint256"}],"name":"setMaxDebtRatioPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxDiscountRate","type":"uint256"}],"name":"setMaxDiscountRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setMaxExpansionTiersEntry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPremiumRate","type":"uint256"}],"name":"setMaxPremiumRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyContractionPercent","type":"uint256"}],"name":"setMaxSupplyContractionPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupplyExpansionPercent","type":"uint256"}],"name":"setMaxSupplyExpansionPercents","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintingFactorForPayingDebt","type":"uint256"}],"name":"setMintingFactorForPayingDebt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operator","type":"address"}],"name":"setOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumPercent","type":"uint256"}],"name":"setPremiumPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_premiumThreshold","type":"uint256"}],"name":"setPremiumThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_index","type":"uint8"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"setSupplyTiersEntry","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyTiers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001805460ff60a01b191690556000600381905560045534801561002757600080fd5b50614930806100376000396000f3fe608060405234801561001057600080fd5b50600436106104335760003560e01c806378e9792511610236578063b8344e5c1161013b578063d5d3b26c116100c3578063e531a8a411610087578063e531a8a4146109f0578063e90b245414610a16578063eaf53c5314610a1e578063f14698de14610a26578063fcb6f00814610a2e57610433565b8063d5d3b26c146109aa578063d98f2495146109d0578063da3ed419146109d8578063e1e19f5d146109e0578063e20a0bcb146109e857610433565b8063c5967c261161010a578063c5967c261461094f578063c8412d0214610957578063c8f987f31461095f578063cecce38e14610967578063d4b149441461098457610433565b8063b8344e5c146108e8578063b8a878f9146108f0578063bcc81f19146108f8578063be266d541461093257610433565b806395b6ef0c116101be578063a204452b1161018d578063a204452b1461088d578063b3ab15fb146108aa578063b4d1d795146108d0578063b778f56f146108d8578063b79f7e4e146108e057610433565b806395b6ef0c146107ea57806398b762a1146108365780639982002514610853578063a0487eea1461087057610433565b80638d934f74116102055780638d934f741461075b578063900cf0cf1461076357806391bbfed51461076b578063940e60641461078e578063951357d4146107b457610433565b806378e979251461071d5780637a18be5d1461072557806381d11eaf1461074b578063874106cc1461075357610433565b8063486349491161033c5780635962b74c116102c457806362ac58e41161029357806362ac58e41461069e57806363f96cf4146106c45780636de17cee146106cc57806372c054f9146106f2578063734f7096146106fa57610433565b80635962b74c1461066957806359bf5d39146106865780635a0fc79c1461068e5780635b7561791461069657610433565b806354f04a111161030b57806354f04a11146105fc57806355ebdeef1461061f578063570ca7351461062757806358db63fb1461062f578063591663e11461064c57610433565b80634863494914610599578063499f3f19146105a157806350d7ede2146105be57806354575af4146105c657610433565b80631e3df8c6116103bf578063392e53cd1161038e578063392e53cd1461055c5780634013a08e1461056457806340af7ba51461056c578063425c9ddc146105895780634390d2a81461059157610433565b80631e3df8c61461052057806322f832cd1461054457806329ef19191461054c5780632e9c7b651461055457610433565b80630b5bcec7116104065780630b5bcec714610481578063118ebbf91461049e57806312b75dbd146104c1578063154ec2db146104e7578063158ef93e1461050457610433565b8063011209db1461043857806303be7e7614610452578063044f9e691461045a57806304e5c7b114610462575b600080fd5b610440610a36565b60408051918252519081900360200190f35b610440610ae8565b610440610aee565b61047f6004803603602081101561047857600080fd5b5035610bc9565b005b61047f6004803603602081101561049757600080fd5b5035610c98565b61047f600480360360408110156104b457600080fd5b5080359060200135610d34565b61047f600480360360208110156104d757600080fd5b50356001600160a01b0316611391565b61047f600480360360208110156104fd57600080fd5b5035611443565b61050c6114e8565b604080519115158252519081900360200190f35b6105286114f8565b604080516001600160a01b039092168252519081900360200190f35b610440611507565b61044061150d565b610440611513565b61050c611519565b610440611529565b61047f6004803603602081101561058257600080fd5b503561152f565b6104406115d4565b61052861173f565b61052861174e565b61047f600480360360208110156105b757600080fd5b503561175d565b6105286117fa565b61047f600480360360608110156105dc57600080fd5b506001600160a01b03813581169160208101359160409091013516611809565b61047f6004803603604081101561061257600080fd5b508035906020013561194d565b6104406120f9565b6105286120ff565b61047f6004803603602081101561064557600080fd5b503561210e565b61047f6004803603602081101561066257600080fd5b50356121b0565b61047f6004803603602081101561067f57600080fd5b5035612252565b61044061230c565b610440612312565b61047f612318565b61047f600480360360208110156106b457600080fd5b50356001600160a01b0316612ab5565b610528612b4c565b61047f600480360360208110156106e257600080fd5b50356001600160a01b0316612b5b565b610440612bf2565b61047f6004803603604081101561071057600080fd5b5080359060200135612cb2565b610440612d6b565b61047f6004803603602081101561073b57600080fd5b50356001600160a01b0316612d71565b610440612ddc565b610440612de2565b610528612de8565b610440612df7565b61047f6004803603604081101561078157600080fd5b5080359060200135612dfd565b61050c600480360360408110156107a457600080fd5b5060ff8135169060200135612ef5565b61047f600480360360608110156107ca57600080fd5b506001600160a01b03813581169160208101359160409091013516613011565b61047f600480360360c081101561080057600080fd5b506001600160a01b0381358116916020810135821691604082013581169160608101358216916080820135169060a001356130d4565b61047f6004803603602081101561084c57600080fd5b50356133c1565b6104406004803603602081101561086957600080fd5b503561340f565b6104406004803603602081101561088657600080fd5b503561342d565b61047f600480360360208110156108a357600080fd5b503561343a565b61047f600480360360208110156108c057600080fd5b50356001600160a01b0316613488565b6104406134f3565b6104406134f9565b61044061359b565b6104406135a1565b6104406135a7565b61047f6004803603608081101561090e57600080fd5b506001600160a01b03813581169160208101359160408201351690606001356135ad565b61047f6004803603602081101561094857600080fd5b5035613742565b6104406137d8565b610440613802565b610440613808565b61047f6004803603602081101561097d57600080fd5b503561380e565b61050c6004803603604081101561099a57600080fd5b5060ff81351690602001356138af565b61047f600480360360208110156109c057600080fd5b50356001600160a01b03166139a9565b610440613a14565b610440613a1a565b610528613a20565b610440613a2f565b61047f60048036036020811015610a0657600080fd5b50356001600160a01b0316613a91565b610440613b28565b610440613b2e565b610440613b34565b610440613b3a565b600080610a41610aee565b9050600a548111610ae457601954610a5d57600a549150610ae4565b6000610a8682610a80670de0b6b3a7640000600a54613b4090919063ffffffff16565b90613ba0565b90506000610ab1612710610a80601954610aab600a5487613c0790919063ffffffff16565b90613b40565b600a54909150610ac19082613c64565b93506000601754118015610ad6575060175484115b15610ae15760175493505b50505b5090565b60205481565b60095460055460408051633ddac95360e01b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691633ddac95391604480820192602092909190829003018186803b158015610b5057600080fd5b505afa925050508015610b7557506040513d6020811015610b7057600080fd5b505160015b610bb05760405162461bcd60e51b81526004018080602001828103825260378152602001806147716037913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff16905090565b6001546001600160a01b03163314610c125760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600b54811015610c535760405162461bcd60e51b815260040180806020018281038252602b815260200180614699602b913960400191505060405180910390fd5b6096811115610c935760405162461bcd60e51b815260040180806020018281038252602481526020018061462a6024913960400191505060405180910390fd5b601a55565b6001546001600160a01b03163314610ce15760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600a8110158015610cf457506103e88111155b610d2f5760405162461bcd60e51b81526004018080602001828103825260288152602001806147a86028913960400191505060405180910390fd5b600f55565b610d3c613cbe565b15610d785760405162461bcd60e51b81526004018080602001828103825260268152602001806148476026913960400191505060405180910390fd5b610d80613cdd565b15610dbc5760405162461bcd60e51b81526004018080602001828103825260268152602001806148476026913960400191505060405180910390fd5b600254421015610e0f576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6005546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610e5357600080fd5b505afa158015610e67573d6000803e3d6000fd5b505050506040513d6020811015610e7d57600080fd5b50516001600160a01b0316148015610f0b57506006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d6020811015610efe57600080fd5b50516001600160a01b0316145b8015610f8d57506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610f5657600080fd5b505afa158015610f6a573d6000803e3d6000fd5b505050506040513d6020811015610f8057600080fd5b50516001600160a01b0316145b801561100f57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015610fd857600080fd5b505afa158015610fec573d6000803e3d6000fd5b505050506040513d602081101561100257600080fd5b50516001600160a01b0316145b611060576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b6000821161109f5760405162461bcd60e51b815260040180806020018281038252602e8152602001806145fc602e913960400191505060405180910390fd5b60006110a9610aee565b90508181146110ff576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20414d415a45207072696365206d6f7665640000000000604482015290519081900360640190fd5b600b54811161113f5760405162461bcd60e51b81526004018080602001828103825260338152602001806146e56033913960400191505060405180910390fd5b60006111496134f9565b9050600081116111a0576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b60006111b8670de0b6b3a7640000610a808785613b40565b600554604080516370a0823160e01b8152306004820152905192935083926001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561120857600080fd5b505afa15801561121c573d6000803e3d6000fd5b505050506040513d602081101561123257600080fd5b505110156112715760405162461bcd60e51b81526004018080602001828103825260258152602001806146746025913960400191505060405180910390fd5b611289611280600c5483613cfc565b600c5490613c07565b600c556006546040805163079cc67960e41b81523360048201526024810188905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b1580156112df57600080fd5b505af11580156112f3573d6000803e3d6000fd5b505060055461130f92506001600160a01b031690503383613d12565b611317613d64565b6040805182815260208101879052815133927f51e0d16595cabc591e64da08e45bb223577e5b9a39cd947b4ddc3472b2dd8878928290030190a25050436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055505050565b6001546001600160a01b031633146113da5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600654604080516329605e7760e01b81526001600160a01b038481166004830152915191909216916329605e7791602480830192600092919082900301818387803b15801561142857600080fd5b505af115801561143c573d6000803e3d6000fd5b5050505050565b6001546001600160a01b0316331461148c5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b614e208111156114e3576040805162461bcd60e51b815260206004820152601d60248201527f5f646973636f756e7450657263656e74206973206f7665722032303025000000604482015290519081900360640190fd5b601955565b600154600160a01b900460ff1681565b6005546001600160a01b031681565b60115481565b60195481565b60185481565b600154600160a01b900460ff1690565b601c5481565b6001546001600160a01b031633146115785760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b614e208111156115cf576040805162461bcd60e51b815260206004820152601c60248201527f5f7072656d69756d50657263656e74206973206f766572203230302500000000604482015290519081900360640190fd5b601b55565b6000806115df610aee565b9050600a548111610ae457600554604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b15801561162f57600080fd5b505afa158015611643573d6000803e3d6000fd5b505050506040513d602081101561165957600080fd5b50516013549091506000906116779061271090610a80908590613b40565b90506000600660009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156116c957600080fd5b505afa1580156116dd573d6000803e3d6000fd5b505050506040513d60208110156116f357600080fd5b505190508082111561173857600061170b8383613c07565b90506000611725670de0b6b3a7640000610a808489613b40565b905061173360045482613cfc565b965050505b5050505090565b601f546001600160a01b031681565b6009546001600160a01b031681565b6001546001600160a01b031633146117a65760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b61271081101580156117ba5750614e208111155b6117f55760405162461bcd60e51b81526004018080602001828103825260298152602001806147486029913960400191505060405180910390fd5b601c55565b6006546001600160a01b031681565b6001546001600160a01b031633146118525760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6005546001600160a01b038481169116141561189d576040805162461bcd60e51b8152602060048201526005602482015264616d617a6560d81b604482015290519081900360640190fd5b6006546001600160a01b03848116911614156118e8576040805162461bcd60e51b815260206004820152600560248201526418589bdb9960da1b604482015290519081900360640190fd5b6007546001600160a01b0384811691161415611934576040805162461bcd60e51b815260206004820152600660248201526561736861726560d01b604482015290519081900360640190fd5b6119486001600160a01b0384168284613d12565b505050565b611955613cbe565b156119915760405162461bcd60e51b81526004018080602001828103825260268152602001806148476026913960400191505060405180910390fd5b611999613cdd565b156119d55760405162461bcd60e51b81526004018080602001828103825260268152602001806148476026913960400191505060405180910390fd5b600254421015611a28576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6005546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611a6c57600080fd5b505afa158015611a80573d6000803e3d6000fd5b505050506040513d6020811015611a9657600080fd5b50516001600160a01b0316148015611b2457506006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611aed57600080fd5b505afa158015611b01573d6000803e3d6000fd5b505050506040513d6020811015611b1757600080fd5b50516001600160a01b0316145b8015611ba657506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611b6f57600080fd5b505afa158015611b83573d6000803e3d6000fd5b505050506040513d6020811015611b9957600080fd5b50516001600160a01b0316145b8015611c2857506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b158015611bf157600080fd5b505afa158015611c05573d6000803e3d6000fd5b505050506040513d6020811015611c1b57600080fd5b50516001600160a01b0316145b611c79576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b60008211611cb85760405162461bcd60e51b81526004018080602001828103825260308152602001806147186030913960400191505060405180910390fd5b6000611cc2610aee565b9050818114611d18576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20414d415a45207072696365206d6f7665640000000000604482015290519081900360640190fd5b600a548110611d585760405162461bcd60e51b81526004018080602001828103825260338152602001806146e56033913960400191505060405180910390fd5b600454831115611d995760405162461bcd60e51b815260040180806020018281038252602a8152602001806148a3602a913960400191505060405180910390fd5b6000611da3610a36565b905060008111611dfa576040805162461bcd60e51b815260206004820152601b60248201527f54726561737572793a20696e76616c696420626f6e6420726174650000000000604482015290519081900360640190fd5b6000611e12670de0b6b3a7640000610a808785613b40565b90506000600560009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611e6457600080fd5b505afa158015611e78573d6000803e3d6000fd5b505050506040513d6020811015611e8e57600080fd5b5051600654604080516318160ddd60e01b81529051929350600092611f139286926001600160a01b03909116916318160ddd91600480820192602092909190829003018186803b158015611ee157600080fd5b505afa158015611ef5573d6000803e3d6000fd5b505050506040513d6020811015611f0b57600080fd5b505190613c64565b9050611f30612710610a8060135485613b4090919063ffffffff16565b811115611f7a576040805162461bcd60e51b81526020600482015260136024820152726f766572206d6178206465627420726174696f60681b604482015290519081900360640190fd5b6005546040805163079cc67960e41b8152336004820152602481018a905290516001600160a01b03909216916379cc67909160448082019260009290919082900301818387803b158015611fcd57600080fd5b505af1158015611fe1573d6000803e3d6000fd5b5050600654604080516340c10f1960e01b81523360048201526024810188905290516001600160a01b0390921693506340c10f1992506044808201926020929091908290030181600087803b15801561203957600080fd5b505af115801561204d573d6000803e3d6000fd5b505050506040513d602081101561206357600080fd5b50506004546120729088613c07565b60045561207d613d64565b6040805188815260208101859052815133927f11584907399a1b5ff8d1824902e074c98363180f8bf6762cc6e0b6faf5606c4b928290030190a25050436000908152602081815260408083203284529091528082208054600160ff19918216811790925533845291909220805490911690911790555050505050565b601e5481565b6001546001600160a01b031681565b6001546001600160a01b031633146121575760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6101f4811015801561216b57506127108111155b6121ab576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601055565b6001546001600160a01b031633146121f95760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6103e8811015801561220d57506127108111155b61224d576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601355565b6001546001600160a01b0316331461229b5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600a5481101580156122c757506122c36064610a806078600a54613b4090919063ffffffff16565b8111155b612307576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b600b55565b600c5490565b600c5481565b612320613cbe565b1561235c5760405162461bcd60e51b81526004018080602001828103825260268152602001806148476026913960400191505060405180910390fd5b612364613cdd565b156123a05760405162461bcd60e51b81526004018080602001828103825260268152602001806148476026913960400191505060405180910390fd5b6002544210156123f3576040805162461bcd60e51b8152602060048201526019602482015278151c99585cdd5c9e4e881b9bdd081cdd185c9d1959081e595d603a1b604482015290519081900360640190fd5b6123fb6137d8565b42101561244f576040805162461bcd60e51b815260206004820152601860248201527f54726561737572793a206e6f74206f70656e6564207965740000000000000000604482015290519081900360640190fd5b6005546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561249357600080fd5b505afa1580156124a7573d6000803e3d6000fd5b505050506040513d60208110156124bd57600080fd5b50516001600160a01b031614801561254b57506006546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561251457600080fd5b505afa158015612528573d6000803e3d6000fd5b505050506040513d602081101561253e57600080fd5b50516001600160a01b0316145b80156125cd57506007546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561259657600080fd5b505afa1580156125aa573d6000803e3d6000fd5b505050506040513d60208110156125c057600080fd5b50516001600160a01b0316145b801561264f57506008546040805163570ca73560e01b8152905130926001600160a01b03169163570ca735916004808301926020929190829003018186803b15801561261857600080fd5b505afa15801561262c573d6000803e3d6000fd5b505050506040513d602081101561264257600080fd5b50516001600160a01b0316145b6126a0576040805162461bcd60e51b815260206004820152601e60248201527f54726561737572793a206e656564206d6f7265207065726d697373696f6e0000604482015290519081900360640190fd5b6126a8613d64565b6126b0610aee565b601681905550600061273e600c54600560009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561270c57600080fd5b505afa158015612720573d6000803e3d6000fd5b505050506040513d602081101561273657600080fd5b505190613c07565b905060145460035410156127745761276f61276a612710610a8060155485613b4090919063ffffffff16565b613dc8565b6129c1565b600b5460165411156129c157600654604080516318160ddd60e01b815290516000926001600160a01b0316916318160ddd916004808301926020929190829003018186803b1580156127c557600080fd5b505afa1580156127d9573d6000803e3d6000fd5b505050506040513d60208110156127ef57600080fd5b5051600a5460165491925060009161280691613c07565b90506000806000612820655af3107a4000610aab88614111565b90508084111561282e578093505b612849612710610a8060105488613b4090919063ffffffff16565b600c541061286e57612867670de0b6b3a7640000610a808887613b40565b91506128da565b6000612886670de0b6b3a7640000610a808988613b40565b90506128a3612710610a8060115484613b4090919063ffffffff16565b92506128af8184613c07565b601c54909450156128d8576128d5612710610a80601c5487613b4090919063ffffffff16565b93505b505b81156128e9576128e982613dc8565b82156129bb57600c546128fc9084613c64565b600c55600554604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b15801561295357600080fd5b505af1158015612967573d6000803e3d6000fd5b505050506040513d602081101561297d57600080fd5b5050604080514281526020810185905281517ff705142bf09f04297640495ddf7c59b7fd6f51894c5aea9602d631cf05f0efc2929181900390910190a15b50505050505b506003546129d0906001613c64565b600355600b546129de610aee565b11612a7457612a6f612710610a80601254600560009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015612a3d57600080fd5b505afa158015612a51573d6000803e3d6000fd5b505050506040513d6020811015612a6757600080fd5b505190613b40565b612a77565b60005b600455436000908152602081815260408083203284529091528082208054600160ff1991821681179092553384529190922080549091169091179055565b6001546001600160a01b03163314612afe5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6008546040805163b3ab15fb60e01b81526001600160a01b0384811660048301529151919092169163b3ab15fb91602480830192600092919082900301818387803b15801561142857600080fd5b6008546001600160a01b031681565b6001546001600160a01b03163314612ba45760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600554604080516329605e7760e01b81526001600160a01b038481166004830152915191909216916329605e7791602480830192600092919082900301818387803b15801561142857600080fd5b600080612bfd610aee565b9050600b54811115610ae457600554604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015612c5457600080fd5b505afa158015612c68573d6000803e3d6000fd5b505050506040513d6020811015612c7e57600080fd5b505190506000612c8c6134f9565b90508015610ae157612caa81610a8084670de0b6b3a7640000613b40565b935050505090565b6001546001600160a01b03163314612cfb5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b60085460408051632ffaaa0960e01b8152600481018590526024810184905290516001600160a01b0390921691632ffaaa099160448082019260009290919082900301818387803b158015612d4f57600080fd5b505af1158015612d63573d6000803e3d6000fd5b505050505050565b60025481565b6001546001600160a01b03163314612dba5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60105481565b60155481565b601d546001600160a01b031681565b60035481565b6001546001600160a01b03163314612e465760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6078821115612e9c576040805162461bcd60e51b815260206004820152601e60248201527f5f626f6f74737472617045706f6368733a206f7574206f662072616e67650000604482015290519081900360640190fd5b60648110158015612eaf57506103e88111155b612eea5760405162461bcd60e51b815260040180806020018281038252602e8152602001806148cd602e913960400191505060405180910390fd5b601491909155601555565b6001546000906001600160a01b03163314612f415760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b60098360ff1610612f835760405162461bcd60e51b81526004018080602001828103825260298152602001806147d06029913960400191505060405180910390fd5b60ff831615612fb557600d6001840360ff1681548110612f9f57fe5b90600052602060002001548211612fb557600080fd5b60088360ff161015612fea57600d8360010160ff1681548110612fd457fe5b90600052602060002001548210612fea57600080fd5b81600d8460ff1681548110612ffb57fe5b6000918252602090912001555060015b92915050565b6001546001600160a01b0316331461305a5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b60085460408051631515d6bd60e21b81526001600160a01b038681166004830152602482018690528481166044830152915191909216916354575af491606480830192600092919082900301818387803b1580156130b757600080fd5b505af11580156130cb573d6000803e3d6000fd5b50505050505050565b600154600160a01b900460ff1615613133576040805162461bcd60e51b815260206004820152601d60248201527f54726561737572793a20616c726561647920696e697469616c697a6564000000604482015290519081900360640190fd5b600580546001600160a01b03199081166001600160a01b0389811691909117909255600680548216888416179055600780548216878416179055600980548216868416179055600880549091169184169190911790556002819055670de0b6b3a7640000600a8190556131ae90606490610a80906065613b40565b600b556040805161012081018252600081526969e10de76676d0800000602082015269d3c21bcecceda1000000918101919091526a013da329b633647180000060608201526a01a784379d99db4200000060808201526a0422ca8b0a00a42500000060a08201526a084595161401484a00000060c08201526a108b2a2c2802909400000060e08201526a295be96e6406697200000061010082015261325790600d90600961454f565b5060408051610120810182526101c28152610190602082015261015e9181019190915261012c606082015260fa608082015260c860a0820152609660c0820152607d60e082015260646101008201526132b490600e9060096145a5565b50610190600f55612710601055610dac601181905561012c601255601355606e601a55611b58601b55601c6014556101c2601555600554604080516370a0823160e01b815230600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561333357600080fd5b505afa158015613347573d6000803e3d6000fd5b505050506040513d602081101561335d57600080fd5b5051600c55600180546001600160a01b031960ff60a01b19909116600160a01b1716339081179091556040805143815290517f25ff68dd81b34665b5ba7e553ee5511bf6812e12adb4a7e2c0d9e26b3099ce799181900360200190a2505050505050565b6001546001600160a01b0316331461340a5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b601755565b600d818154811061341c57fe5b600091825260209091200154905081565b600e818154811061341c57fe5b6001546001600160a01b031633146134835760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b601855565b6001546001600160a01b031633146134d15760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61546081565b600080613504610aee565b9050600b54811115610ae457600061352e6064610a80601a54600a54613b4090919063ffffffff16565b905080821061359057600061355a612710610a80601b54610aab600a5488613c0790919063ffffffff16565b600a5490915061356a9082613c64565b9350600060185411801561357f575060185484115b1561358a5760185493505b50613596565b600a5492505b505090565b600b5481565b60165481565b60175481565b6001546001600160a01b031633146135f65760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6001600160a01b03841661363a576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b6103e8831115613680576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b6001600160a01b0382166136c4576040805162461bcd60e51b815260206004808301919091526024820152637a65726f60e01b604482015290519081900360640190fd5b6101f481111561370a576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601d80546001600160a01b03199081166001600160a01b0396871617909155601e93909355601f805490931691909316179055602055565b6001546001600160a01b0316331461378b5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600854604080516397ffe1d760e01b81526004810184905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b15801561142857600080fd5b60006137fd6137f4615460600354613b4090919063ffffffff16565b60025490613c64565b905090565b601b5481565b601a5481565b6001546001600160a01b031633146138575760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b6064811015801561386a57506105dc8111155b6138aa576040805162461bcd60e51b815260206004820152600c60248201526b6f7574206f662072616e676560a01b604482015290519081900360640190fd5b601255565b6001546000906001600160a01b031633146138fb5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b60098360ff161061393d5760405162461bcd60e51b81526004018080602001828103825260298152602001806147d06029913960400191505060405180910390fd5b600a821015801561395057506103e88211155b613998576040805162461bcd60e51b81526020600482015260146024820152735f76616c75653a206f7574206f662072616e676560601b604482015290519081900360640190fd5b81600e8460ff1681548110612ffb57fe5b6001546001600160a01b031633146139f25760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b600f5481565b60135481565b6007546001600160a01b031681565b60095460055460408051630d01142560e31b81526001600160a01b039283166004820152670de0b6b3a7640000602482015290516000939290921691636808a12891604480820192602092909190829003018186803b158015610b5057600080fd5b6001546001600160a01b03163314613ada5760405162461bcd60e51b81526004018080602001828103825260248152602001806147f96024913960400191505060405180910390fd5b600754604080516329605e7760e01b81526001600160a01b038481166004830152915191909216916329605e7791602480830192600092919082900301818387803b15801561142857600080fd5b60125481565b600a5481565b60145481565b60045481565b600082613b4f5750600061300b565b82820282848281613b5c57fe5b0414613b995760405162461bcd60e51b81526004018080602001828103825260218152602001806146c46021913960400191505060405180910390fd5b9392505050565b6000808211613bf6576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381613bff57fe5b049392505050565b600082821115613c5e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015613b99576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b4360009081526020818152604080832032845290915290205460ff1690565b4360009081526020818152604080832033845290915290205460ff1690565b6000818310613d0b5781613b99565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261194890849061416e565b600960009054906101000a90046001600160a01b03166001600160a01b031663a2e620456040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613db457600080fd5b505af1925050508015613dc5575060015b50565b600554604080516340c10f1960e01b81523060048201526024810184905290516001600160a01b03909216916340c10f19916044808201926020929091908290030181600087803b158015613e1c57600080fd5b505af1158015613e30573d6000803e3d6000fd5b505050506040513d6020811015613e4657600080fd5b5050601e5460009015613f3157613e6e612710610a80601e5485613b4090919063ffffffff16565b600554601d546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101859052905193945091169163a9059cbb916044808201926020929091908290030181600087803b158015613ec957600080fd5b505af1158015613edd573d6000803e3d6000fd5b505050506040513d6020811015613ef357600080fd5b5050604080514281526020810183905281517fcb3f34aaa3445b461e6da5492dc89e5c257a59fa598131f3b6bbc97a3638e409929181900390910190a15b6020546000901561401a57613f57612710610a8060205486613b4090919063ffffffff16565b600554601f546040805163a9059cbb60e01b81526001600160a01b03928316600482015260248101859052905193945091169163a9059cbb916044808201926020929091908290030181600087803b158015613fb257600080fd5b505af1158015613fc6573d6000803e3d6000fd5b505050506040513d6020811015613fdc57600080fd5b5050604080514281526020810183905281517fdc8b715b18523e58b7fd0da53259dfa91efd91df4a854d94b136e3333a3b9395929181900390910190a15b61402e816140288585613c07565b90613c07565b60085460055491945061404f916001600160a01b039081169116600061421f565b60085460055461406c916001600160a01b0391821691168561421f565b600854604080516397ffe1d760e01b81526004810186905290516001600160a01b03909216916397ffe1d79160248082019260009290919082900301818387803b1580156140b957600080fd5b505af11580156140cd573d6000803e3d6000fd5b5050604080514281526020810187905281517fa72fa2f263b243b0f0e1fec5f3d49d33de573d15929b6b730c6b8ab3838c1c4d9450908190039091019150a1505050565b600060085b600d8160ff168154811061412657fe5b9060005260206000200154831061415b57600e8160ff168154811061414757fe5b600091825260209091200154600f55614164565b60001901614116565b5050600f54919050565b60606141c3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166143329092919063ffffffff16565b805190915015611948578080602001905160208110156141e257600080fd5b50516119485760405162461bcd60e51b815260040180806020018281038252602a81526020018061481d602a913960400191505060405180910390fd5b8015806142a5575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b15801561427757600080fd5b505afa15801561428b573d6000803e3d6000fd5b505050506040513d60208110156142a157600080fd5b5051155b6142e05760405162461bcd60e51b815260040180806020018281038252603681526020018061486d6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b17905261194890849061416e565b60606143418484600085614349565b949350505050565b60608247101561438a5760405162461bcd60e51b815260040180806020018281038252602681526020018061464e6026913960400191505060405180910390fd5b614393856144a5565b6143e4576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106144235780518252601f199092019160209182019101614404565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614485576040519150601f19603f3d011682016040523d82523d6000602084013e61448a565b606091505b509150915061449a8282866144ab565b979650505050505050565b3b151590565b606083156144ba575081613b99565b8251156144ca5782518084602001fd5b8160405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156145145781810151838201526020016144fc565b50505050905090810190601f1680156145415780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b828054828255906000526020600020908101928215614599579160200282015b8281111561459957825182906affffffffffffffffffffff1690559160200191906001019061456f565b50610ae49291506145e6565b828054828255906000526020600020908101928215614599579160200282015b82811115614599578251829061ffff169055916020019190600101906145c5565b5b80821115610ae457600081556001016145e756fe54726561737572793a2063616e6e6f742072656465656d20626f6e64732077697468207a65726f20616d6f756e745f7072656d69756d5468726573686f6c6420697320686967686572207468616e20312e35416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c54726561737572793a20747265617375727920686173206e6f206d6f7265206275646765745f7072656d69756d5468726573686f6c64206578636565647320616d617a6550726963654365696c696e67536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7754726561737572793a20616d617a655072696365206e6f7420656c696769626c6520666f7220626f6e6420707572636861736554726561737572793a2063616e6e6f7420707572636861736520626f6e64732077697468207a65726f20616d6f756e745f6d696e74696e67466163746f72466f72506179696e67446562743a206f7574206f662072616e676554726561737572793a206661696c656420746f20636f6e73756c7420414d415a452070726963652066726f6d20746865206f7261636c655f6d6178537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765496e6465782068617320746f206265206c6f776572207468616e20636f756e74206f6620746965727354726561737572793a2063616c6c6572206973206e6f7420746865206f70657261746f725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564436f6e747261637447756172643a206f6e6520626c6f636b2c206f6e652066756e6374696f6e5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e636554726561737572793a206e6f7420656e6f75676820626f6e64206c65667420746f2070757263686173655f626f6f747374726170537570706c79457870616e73696f6e50657263656e743a206f7574206f662072616e6765a26469706673582212209fead1dd8b0c2128073e23e4d784d18629995b2c09feb69dcdf2f02404cdcabb64736f6c634300060c0033
Deployed ByteCode Sourcemap
28931:22242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34816:733;;;:::i;:::-;;;;;;;;;;;;;;;;30784:35;;;:::i;32891:301::-;;;:::i;42407:322::-;;;;;;;;;;;;;;;;-1:-1:-1;42407:322:0;;:::i;:::-;;38683:319;;;;;;;;;;;;;;;;-1:-1:-1;38683:319:0;;:::i;44782:1107::-;;;;;;;;;;;;;;;;-1:-1:-1;44782:1107:0;;;;;;;:::i;50308:132::-;;;;;;;;;;;;;;;;-1:-1:-1;50308:132:0;-1:-1:-1;;;;;50308:132:0;;:::i;42192:207::-;;;;;;;;;;;;;;;;-1:-1:-1;42192:207:0;;:::i;29289:31::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;29483:20;;;:::i;:::-;;;;-1:-1:-1;;;;;29483:20:0;;;;;;;;;;;;;;29933:47;;;:::i;30482:30::-;;;:::i;30423:29::-;;;:::i;32643:89::-;;;:::i;30593:41::-;;;:::i;42737:201::-;;;;;;;;;;;;;;;;-1:-1:-1;42737:201:0;;:::i;33631:736::-;;;:::i;30755:22::-;;;:::i;29596:26::-;;;:::i;42946:330::-;;;;;;;;;;;;;;;;-1:-1:-1;42946:330:0;;:::i;29510:20::-;;;:::i;49593:425::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49593:425:0;;;;;;;;;;;;;;;;;:::i;43446:1328::-;;;;;;;;;;;;;;;;-1:-1:-1;43446:1328:0;;;;;;;:::i;30711:35::-;;;:::i;29243:23::-;;;:::i;39921:291::-;;;;;;;;;;;;;;;;-1:-1:-1;39921:291:0;;:::i;40531:257::-;;;;;;;;;;;;;;;;-1:-1:-1;40531:257:0;;:::i;38394:281::-;;;;;;;;;;;;;;;;-1:-1:-1;38394:281:0;;:::i;33529:94::-;;;:::i;29721:31::-;;;:::i;47309:2276::-;;;:::i;50448:128::-;;;;;;;;;;;;;;;;-1:-1:-1;50448:128:0;-1:-1:-1;;;;;50448:128:0;;:::i;29567:22::-;;;:::i;50026:132::-;;;;;;;;;;;;;;;;-1:-1:-1;50026:132:0;-1:-1:-1;;;;;50026:132:0;;:::i;34375:433::-;;;:::i;50584:198::-;;;;;;;;;;;;;;;;-1:-1:-1;50584:198:0;;;;;;;:::i;29343:24::-;;;:::i;38273:113::-;;;;;;;;;;;;;;;;-1:-1:-1;38273:113:0;-1:-1:-1;;;;;38273:113:0;;:::i;29886:40::-;;;:::i;30195:46::-;;;:::i;30682:22::-;;;:::i;29374:24::-;;;:::i;40796:499::-;;;;;;;;;;;;;;;;-1:-1:-1;40796:499:0;;;;;;;:::i;39010:491::-;;;;;;;;;;;;;;;;-1:-1:-1;39010:491:0;;;;;;;;;:::i;50936:234::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50936:234:0;;;;;;;;;;;;;;;;;:::i;36396:1655::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36396:1655:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;41922:129::-;;;;;;;;;;;;;;;;-1:-1:-1;41922:129:0;;:::i;29761:28::-;;;;;;;;;;;;;;;;-1:-1:-1;29761:28:0;;:::i;29796:34::-;;;;;;;;;;;;;;;;-1:-1:-1;29796:34:0;;:::i;42059:125::-;;;;;;;;;;;;;;;;-1:-1:-1;42059:125:0;;:::i;38059:101::-;;;;;;;;;;;;;;;;-1:-1:-1;38059:101:0;-1:-1:-1;;;;;38059:101:0;;:::i;29124:40::-;;;:::i;35557:785::-;;;:::i;29680:32::-;;;:::i;30317:38::-;;;:::i;30362:30::-;;;:::i;41303:611::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;41303:611:0;;;;;;;;;;;;;;;;;;;;:::i;50790:138::-;;;;;;;;;;;;;;;;-1:-1:-1;50790:138:0;;:::i;32754:114::-;;;:::i;30557:29::-;;;:::i;30519:31::-;;;:::i;40220:303::-;;;;;;;;;;;;;;;;-1:-1:-1;40220:303:0;;:::i;39509:404::-;;;;;;;;;;;;;;;;-1:-1:-1;39509:404:0;;;;;;;;;:::i;38168:97::-;;;;;;;;;;;;;;;;-1:-1:-1;38168:97:0;-1:-1:-1;;;;;38168:97:0;;:::i;29839:40::-;;;:::i;30036:34::-;;;:::i;29537:21::-;;;:::i;33200:306::-;;;:::i;50166:134::-;;;;;;;;;;;;;;;;-1:-1:-1;50166:134:0;-1:-1:-1;;;;;50166:134:0;;:::i;29987:42::-;;;:::i;29645:28::-;;;:::i;30158:30::-;;;:::i;29405:45::-;;;:::i;34816:733::-;34868:13;34894:19;34916:15;:13;:15::i;:::-;34894:37;;34961:13;;34946:11;:28;34942:600;;34995:15;;34991:540;;35076:13;;35068:21;;34991:540;;;35130:19;35152:40;35180:11;35152:23;35170:4;35152:13;;:17;;:23;;;;:::i;:::-;:27;;:40::i;:::-;35130:62;;35230:23;35256:62;35312:5;35256:51;35291:15;;35256:30;35272:13;;35256:11;:15;;:30;;;;:::i;:::-;:34;;:51::i;:62::-;35345:13;;35230:88;;-1:-1:-1;35345:34:0;;35230:88;35345:17;:34::i;:::-;35337:42;;35420:1;35402:15;;:19;:46;;;;;35433:15;;35425:5;:23;35402:46;35398:118;;;35481:15;;35473:23;;35398:118;34991:540;;;34816:733;;:::o;30784:35::-;;;;:::o;32891:301::-;32980:11;;33001:5;;32972:41;;;-1:-1:-1;;;32972:41:0;;-1:-1:-1;;;;;33001:5:0;;;32972:41;;;;33008:4;32972:41;;;;;;32937:18;;32980:11;;;;;32972:28;;:41;;;;;;;;;;;;;;;32980:11;32972:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32972:41:0;;;32968:217;;33108:65;;-1:-1:-1;;;33108:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32968:217;33060:14;;;-1:-1:-1;32891:301:0;:::o;42407:322::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42525:17:::1;;42504;:38;;42496:94;;;;-1:-1:-1::0;;;42496:94:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42630:3;42609:17;:24;;42601:73;;;;-1:-1:-1::0;;;42601:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42685:16;:36:::0;42407:322::o;38683:319::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38829:2:::1;38799:26;:32;;:70;;;;;38865:4;38835:26;:34;;38799:70;38791:123;;;;-1:-1:-1::0;;;38791:123:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38940:25;:54:::0;38683:319::o;44782:1107::-;26606:28;:26;:28::i;:::-;26605:29;26597:80;;;;-1:-1:-1;;;26597:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26697:28;:26;:28::i;:::-;26696:29;26688:80;;;;-1:-1:-1;;;26688:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31705:9:::1;;31698:3;:16;;31690:54;;;::::0;;-1:-1:-1;;;31690:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31690:54:0;;;;;;;;;;;;;::::1;;32151:5:::2;::::0;32139:29:::2;::::0;;-1:-1:-1;;;32139:29:0;;;;32180:4:::2;::::0;-1:-1:-1;;;;;32151:5:0::2;::::0;32139:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32151:5;32139:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32139:29:0;-1:-1:-1;;;;;32139:46:0::2;;:113:::0;::::2;;;-1:-1:-1::0;32218:5:0::2;::::0;32206:29:::2;::::0;;-1:-1:-1;;;32206:29:0;;;;32247:4:::2;::::0;-1:-1:-1;;;;;32218:5:0::2;::::0;32206:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32218:5;32206:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32206:29:0;-1:-1:-1;;;;;32206:46:0::2;;32139:113;:181;;;;-1:-1:-1::0;32285:6:0::2;::::0;32273:30:::2;::::0;;-1:-1:-1;;;32273:30:0;;;;32315:4:::2;::::0;-1:-1:-1;;;;;32285:6:0::2;::::0;32273:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32285:6;32273:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32273:30:0;-1:-1:-1;;;;;32273:47:0::2;;32139:181;:247;;;;-1:-1:-1::0;32350:7:0::2;::::0;32341:28:::2;::::0;;-1:-1:-1;;;32341:28:0;;;;32381:4:::2;::::0;-1:-1:-1;;;;;32350:7:0::2;::::0;32341:26:::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32350:7;32341:28;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32341:28:0;-1:-1:-1;;;;;32341:45:0::2;;32139:247;32117:327;;;::::0;;-1:-1:-1;;;32117:327:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;44929:1:::3;44915:11;:15;44907:74;;;;-1:-1:-1::0;;;44907:74:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44994:18;45015:15;:13;:15::i;:::-;44994:36;;45063:11;45049:10;:25;45041:65;;;::::0;;-1:-1:-1;;;45041:65:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;45152:17;;45139:10;:30;45117:148;;;;-1:-1:-1::0;;;45117:148:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45278:13;45294:20;:18;:20::i;:::-;45278:36;;45341:1;45333:5;:9;45325:49;;;::::0;;-1:-1:-1;;;45325:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;45387:20;45410:32;45437:4;45410:22;:11:::0;45426:5;45410:15:::3;:22::i;:32::-;45468:5;::::0;45461:38:::3;::::0;;-1:-1:-1;;;45461:38:0;;45493:4:::3;45461:38;::::0;::::3;::::0;;;45387:55;;-1:-1:-1;45387:55:0;;-1:-1:-1;;;;;45468:5:0;;::::3;::::0;45461:23:::3;::::0;:38;;;;;::::3;::::0;;;;;;;;;45468:5;45461:38;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;45461:38:0;:54:::3;;45453:104;;;;-1:-1:-1::0;;;45453:104:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45589:62;45610:40;45619:16;;45637:12;45610:8;:40::i;:::-;45589:16;::::0;;:20:::3;:62::i;:::-;45570:16;:81:::0;45676:5:::3;::::0;45664:52:::3;::::0;;-1:-1:-1;;;45664:52:0;;45692:10:::3;45664:52;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;45676:5:0;;::::3;::::0;45664:27:::3;::::0;:52;;;;;45676:5:::3;::::0;45664:52;;;;;;;;45676:5;;45664:52;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;45734:5:0::3;::::0;45727:52:::3;::::0;-1:-1:-1;;;;;;45734:5:0::3;::::0;-1:-1:-1;45754:10:0::3;45766:12:::0;45727:26:::3;:52::i;:::-;45792:19;:17;:19::i;:::-;45829:52;::::0;;;;;::::3;::::0;::::3;::::0;;;;;45843:10:::3;::::0;45829:52:::3;::::0;;;;;;::::3;-1:-1:-1::0;;26803:12:0;26795:7;:21;;;;;;;;;;;26817:9;26795:32;;;;;;;;:39;;26830:4;-1:-1:-1;;26795:39:0;;;;;;;;26867:10;26845:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;44782:1107:0:o;50308:132::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50398:5:::1;::::0;50386:46:::1;::::0;;-1:-1:-1;;;50386:46:0;;-1:-1:-1;;;;;50386:46:0;;::::1;;::::0;::::1;::::0;;;50398:5;;;::::1;::::0;50386:35:::1;::::0;:46;;;;;50398:5:::1;::::0;50386:46;;;;;;;50398:5;;50386:46;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50308:132:::0;:::o;42192:207::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42307:5:::1;42287:16;:25;;42279:67;;;::::0;;-1:-1:-1;;;42279:67:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42357:15;:34:::0;42192:207::o;29289:31::-;;;-1:-1:-1;;;29289:31:0;;;;;:::o;29483:20::-;;;-1:-1:-1;;;;;29483:20:0;;:::o;29933:47::-;;;;:::o;30482:30::-;;;;:::o;30423:29::-;;;;:::o;32643:89::-;32713:11;;-1:-1:-1;;;32713:11:0;;;;;32643:89::o;30593:41::-;;;;:::o;42737:201::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42849:5:::1;42830:15;:24;;42822:65;;;::::0;;-1:-1:-1;;;42822:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;42898:14;:32:::0;42737:201::o;33631:736::-;33684:26;33723:19;33745:15;:13;:15::i;:::-;33723:37;;33790:13;;33775:11;:28;33771:589;;33850:5;;33843:27;;;-1:-1:-1;;;33843:27:0;;;;33820:20;;-1:-1:-1;;;;;33850:5:0;;33843:25;;:27;;;;;;;;;;;;;;33850:5;33843:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33843:27:0;33927:19;;33843:27;;-1:-1:-1;33885:22:0;;33910:48;;33952:5;;33910:37;;33843:27;;33910:16;:37::i;:48::-;33885:73;;33973:19;34002:5;;;;;;;;;-1:-1:-1;;;;;34002:5:0;-1:-1:-1;;;;;33995:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33995:27:0;;-1:-1:-1;34041:28:0;;;34037:312;;;34090:24;34117:31;:14;34136:11;34117:18;:31::i;:::-;34090:58;-1:-1:-1;34167:25:0;34195:43;34233:4;34195:33;34090:58;34216:11;34195:20;:33::i;:43::-;34167:71;;34278:55;34287:26;;34315:17;34278:8;:55::i;:::-;34257:76;;34037:312;;;33771:589;;;33631:736;;:::o;30755:22::-;;;-1:-1:-1;;;;;30755:22:0;;:::o;29596:26::-;;;-1:-1:-1;;;;;29596:26:0;;:::o;42946:330::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43094:5:::1;43063:27;:36;;:76;;;;;43134:5;43103:27;:36;;43063:76;43055:130;;;;-1:-1:-1::0;;;43055:130:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43212:26;:56:::0;42946:330::o;29510:20::-;;;-1:-1:-1;;;;;29510:20:0;;:::o;49593:425::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49824:5:::1;::::0;-1:-1:-1;;;;;49797:33:0;;::::1;49824:5:::0;::::1;49797:33;;49789:51;;;::::0;;-1:-1:-1;;;49789:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49789:51:0;;;;;;;;;;;;;::::1;;49886:5;::::0;-1:-1:-1;;;;;49859:33:0;;::::1;49886:5:::0;::::1;49859:33;;49851:51;;;::::0;;-1:-1:-1;;;49851:51:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49851:51:0;;;;;;;;;;;;;::::1;;49948:6;::::0;-1:-1:-1;;;;;49921:34:0;;::::1;49948:6:::0;::::1;49921:34;;49913:53;;;::::0;;-1:-1:-1;;;49913:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49913:53:0;;;;;;;;;;;;;::::1;;49977:33;-1:-1:-1::0;;;;;49977:19:0;::::1;49997:3:::0;50002:7;49977:19:::1;:33::i;:::-;49593:425:::0;;;:::o;43446:1328::-;26606:28;:26;:28::i;:::-;26605:29;26597:80;;;;-1:-1:-1;;;26597:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26697:28;:26;:28::i;:::-;26696:29;26688:80;;;;-1:-1:-1;;;26688:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31705:9:::1;;31698:3;:16;;31690:54;;;::::0;;-1:-1:-1;;;31690:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31690:54:0;;;;;;;;;;;;;::::1;;32151:5:::2;::::0;32139:29:::2;::::0;;-1:-1:-1;;;32139:29:0;;;;32180:4:::2;::::0;-1:-1:-1;;;;;32151:5:0::2;::::0;32139:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32151:5;32139:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32139:29:0;-1:-1:-1;;;;;32139:46:0::2;;:113:::0;::::2;;;-1:-1:-1::0;32218:5:0::2;::::0;32206:29:::2;::::0;;-1:-1:-1;;;32206:29:0;;;;32247:4:::2;::::0;-1:-1:-1;;;;;32218:5:0::2;::::0;32206:27:::2;::::0;:29:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32218:5;32206:29;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32206:29:0;-1:-1:-1;;;;;32206:46:0::2;;32139:113;:181;;;;-1:-1:-1::0;32285:6:0::2;::::0;32273:30:::2;::::0;;-1:-1:-1;;;32273:30:0;;;;32315:4:::2;::::0;-1:-1:-1;;;;;32285:6:0::2;::::0;32273:28:::2;::::0;:30:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32285:6;32273:30;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32273:30:0;-1:-1:-1;;;;;32273:47:0::2;;32139:181;:247;;;;-1:-1:-1::0;32350:7:0::2;::::0;32341:28:::2;::::0;;-1:-1:-1;;;32341:28:0;;;;32381:4:::2;::::0;-1:-1:-1;;;;;32350:7:0::2;::::0;32341:26:::2;::::0;:28:::2;::::0;;::::2;::::0;::::2;::::0;;;;;;;;32350:7;32341:28;::::2;;::::0;::::2;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;32341:28:0;-1:-1:-1;;;;;32341:45:0::2;;32139:247;32117:327;;;::::0;;-1:-1:-1;;;32117:327:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;43592:1:::3;43577:12;:16;43569:77;;;;-1:-1:-1::0;;;43569:77:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43659:18;43680:15;:13;:15::i;:::-;43659:36;;43728:11;43714:10;:25;43706:65;;;::::0;;-1:-1:-1;;;43706:65:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;43817:13;;43804:10;:26;43782:141;;;;-1:-1:-1::0;;;43782:141:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43960:26;;43944:12;:42;;43936:97;;;;-1:-1:-1::0;;;43936:97:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44046:13;44062:21;:19;:21::i;:::-;44046:37;;44110:1;44102:5;:9;44094:49;;;::::0;;-1:-1:-1;;;44094:49:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;44156:19;44178:33;44206:4;44178:23;:12:::0;44195:5;44178:16:::3;:23::i;:33::-;44156:55;;44222:19;44251:5;;;;;;;;;-1:-1:-1::0;;;;;44251:5:0::3;-1:-1:-1::0;;;;;44244:25:0::3;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;44244:27:0;44313:5:::3;::::0;44306:27:::3;::::0;;-1:-1:-1;;;44306:27:0;;;;44244;;-1:-1:-1;44282:21:0::3;::::0;44306:44:::3;::::0;44338:11;;-1:-1:-1;;;;;44313:5:0;;::::3;::::0;44306:25:::3;::::0;:27:::3;::::0;;::::3;::::0;44244::::3;::::0;44306;;;;;;;;44313:5;44306:27;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;44306:27:0;;:31:::3;:44::i;:::-;44282:68;;44386:47;44427:5;44386:36;44402:19;;44386:11;:15;;:36;;;;:::i;:47::-;44369:13;:64;;44361:96;;;::::0;;-1:-1:-1;;;44361:96:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;-1:-1:-1;;;44361:96:0;;;;;;;;;;;;;::::3;;44482:5;::::0;44470:53:::3;::::0;;-1:-1:-1;;;44470:53:0;;44498:10:::3;44470:53;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;44482:5:0;;::::3;::::0;44470:27:::3;::::0;:53;;;;;44482:5:::3;::::0;44470:53;;;;;;;;44482:5;;44470:53;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;-1:-1:-1::0;;44546:5:0::3;::::0;44534:48:::3;::::0;;-1:-1:-1;;;44534:48:0;;44558:10:::3;44534:48;::::0;::::3;::::0;;;;;;;;;-1:-1:-1;;;;;44546:5:0;;::::3;::::0;-1:-1:-1;44534:23:0::3;::::0;-1:-1:-1;44534:48:0;;;;;::::3;::::0;;;;;;;;;44546:5:::3;::::0;44534:48;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;;44624:26:0::3;::::0;:44:::3;::::0;44655:12;44624:30:::3;:44::i;:::-;44595:26;:73:::0;44679:19:::3;:17;:19::i;:::-;44716:50;::::0;;;;;::::3;::::0;::::3;::::0;;;;;44728:10:::3;::::0;44716:50:::3;::::0;;;;;;::::3;-1:-1:-1::0;;26803:12:0;26795:7;:21;;;;;;;;;;;26817:9;26795:32;;;;;;;;:39;;26830:4;-1:-1:-1;;26795:39:0;;;;;;;;26867:10;26845:33;;;;;;:40;;;;;;;;;;-1:-1:-1;;;;;43446:1328:0:o;30711:35::-;;;;:::o;29243:23::-;;;-1:-1:-1;;;;;29243:23:0;;:::o;39921:291::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40066:3:::1;40036:26;:33;;:72;;;;;40103:5;40073:26;:35;;40036:72;40028:97;;;::::0;;-1:-1:-1;;;40028:97:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40028:97:0;;;;;;;;;;;;;::::1;;40150:25;:54:::0;39921:291::o;40531:257::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40658:4:::1;40634:20;:28;;:61;;;;;40690:5;40666:20;:29;;40634:61;40626:86;;;::::0;;-1:-1:-1;;;40626:86:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40626:86:0;;;;;;;;;;;;;::::1;;40738:19;:42:::0;40531:257::o;38394:281::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38515:13:::1;;38493:18;:35;;:92;;;;;38554:31;38581:3;38554:22;38572:3;38554:13;;:17;;:22;;;;:::i;:31::-;38532:18;:53;;38493:92;38485:117;;;::::0;;-1:-1:-1;;;38485:117:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;38485:117:0;;;;;;;;;;;;;::::1;;38629:17;:38:::0;38394:281::o;33529:94::-;33599:16;;33529:94;:::o;29721:31::-;;;;:::o;47309:2276::-;26606:28;:26;:28::i;:::-;26605:29;26597:80;;;;-1:-1:-1;;;26597:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26697:28;:26;:28::i;:::-;26696:29;26688:80;;;;-1:-1:-1;;;26688:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31705:9:::1;;31698:3;:16;;31690:54;;;::::0;;-1:-1:-1;;;31690:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;31690:54:0;;;;;;;;;;;;;::::1;;31820:16:::2;:14;:16::i;:::-;31813:3;:23;;31805:60;;;::::0;;-1:-1:-1;;;31805:60:0;;::::2;;::::0;::::2;::::0;::::2;::::0;;;;::::2;::::0;;;;;;;;;;;;;::::2;;32151:5:::3;::::0;32139:29:::3;::::0;;-1:-1:-1;;;32139:29:0;;;;32180:4:::3;::::0;-1:-1:-1;;;;;32151:5:0::3;::::0;32139:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;32151:5;32139:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;32139:29:0;-1:-1:-1;;;;;32139:46:0::3;;:113:::0;::::3;;;-1:-1:-1::0;32218:5:0::3;::::0;32206:29:::3;::::0;;-1:-1:-1;;;32206:29:0;;;;32247:4:::3;::::0;-1:-1:-1;;;;;32218:5:0::3;::::0;32206:27:::3;::::0;:29:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;32218:5;32206:29;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;32206:29:0;-1:-1:-1;;;;;32206:46:0::3;;32139:113;:181;;;;-1:-1:-1::0;32285:6:0::3;::::0;32273:30:::3;::::0;;-1:-1:-1;;;32273:30:0;;;;32315:4:::3;::::0;-1:-1:-1;;;;;32285:6:0::3;::::0;32273:28:::3;::::0;:30:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;32285:6;32273:30;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;32273:30:0;-1:-1:-1;;;;;32273:47:0::3;;32139:181;:247;;;;-1:-1:-1::0;32350:7:0::3;::::0;32341:28:::3;::::0;;-1:-1:-1;;;32341:28:0;;;;32381:4:::3;::::0;-1:-1:-1;;;;;32350:7:0::3;::::0;32341:26:::3;::::0;:28:::3;::::0;;::::3;::::0;::::3;::::0;;;;;;;;32350:7;32341:28;::::3;;::::0;::::3;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;::::0;::::3;;-1:-1:-1::0;32341:28:0;-1:-1:-1;;;;;32341:45:0::3;;32139:247;32117:327;;;::::0;;-1:-1:-1;;;32117:327:0;;::::3;;::::0;::::3;::::0;::::3;::::0;;;;::::3;::::0;;;;;;;;;;;;;::::3;;47413:19:::4;:17;:19::i;:::-;47469:15;:13;:15::i;:::-;47443:23;:41;;;;47495:19;47517:49;47549:16;;47524:5;;;;;;;;;-1:-1:-1::0;;;;;47524:5:0::4;-1:-1:-1::0;;;;;47517:25:0::4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;47517:27:0;;:31:::4;:49::i;:::-;47495:71;;47589:15;;47581:5;;:23;47577:2001;;;47673:75;47688:59;47741:5;47688:48;47704:31;;47688:11;:15;;:48;;;;:::i;:59::-;47673:14;:75::i;:::-;47577:2001;;;47811:17;;47785:23;;:43;47781:1786;;;47974:5;::::0;47967:27:::4;::::0;;-1:-1:-1;;;47967:27:0;;;;47946:18:::4;::::0;-1:-1:-1;;;;;47974:5:0::4;::::0;47967:25:::4;::::0;:27:::4;::::0;;::::4;::::0;::::4;::::0;;;;;;;;47974:5;47967:27;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;47967:27:0;48063:13:::4;::::0;48035:23:::4;::::0;47967:27;;-1:-1:-1;48013:19:0::4;::::0;48035:42:::4;::::0;:27:::4;:42::i;:::-;48013:64;;48096:21;48136:24:::0;48179:12:::4;48194:58;48247:4;48194:48;48230:11;48194:35;:48::i;:58::-;48179:73;;48289:4;48275:11;:18;48271:85;;;48332:4;48318:18;;48271:85;48398:52;48444:5;48398:41;48413:25;;48398:10;:14;;:41;;;;:::i;:52::-;48378:16;;:72;48374:783;;48563:38;48596:4;48563:28;:11:::0;48579;48563:15:::4;:28::i;:38::-;48544:57;;48374:783;;;48719:20;48742:38;48775:4;48742:28;:11:::0;48758;48742:15:::4;:28::i;:38::-;48719:61;;48822;48877:5;48822:50;48839:32;;48822:12;:16;;:50;;;;:::i;:61::-;48803:80:::0;-1:-1:-1;48922:34:0::4;:12:::0;48803:80;48922:16:::4;:34::i;:::-;48983:26;::::0;48906:50;;-1:-1:-1;48983:30:0;48979:159:::4;;49058:56;49108:5;49058:45;49076:26;;49058:13;:17;;:45;;;;:::i;:56::-;49042:72;;48979:159;48374:783;;49179:20:::0;;49175:101:::4;;49224:32;49239:16;49224:14;:32::i;:::-;49298:17:::0;;49294:258:::4;;49359:16;::::0;:35:::4;::::0;49380:13;49359:20:::4;:35::i;:::-;49340:16;:54:::0;49429:5:::4;::::0;49417:53:::4;::::0;;-1:-1:-1;;;49417:53:0;;49449:4:::4;49417:53;::::0;::::4;::::0;;;;;;;;;-1:-1:-1;;;;;49429:5:0;;::::4;::::0;49417:23:::4;::::0;:53;;;;;::::4;::::0;;;;;;;;;49429:5:::4;::::0;49417:53;::::4;;::::0;::::4;;;;::::0;::::4;;;;;;;;;;;;::::0;::::4;;;;;;;;;;;;;;;;;;;::::0;::::4;;-1:-1:-1::0;;49498:34:0::4;::::0;;49513:3:::4;49498:34:::0;;49417:53:::4;49498:34:::0;::::4;::::0;;;;;::::4;::::0;;;;;;;;;::::4;49294:258;47781:1786;;;;;;-1:-1:-1::0;31900:5:0::2;::::0;:12:::2;::::0;31910:1:::2;31900:9;:12::i;:::-;31892:5;:20:::0;31971:17:::2;::::0;31953:15:::2;:13;:15::i;:::-;:35;31952:115;;31996:71;32061:5;31996:60;32028:27;;32003:5;;;;;;;;;-1:-1:-1::0;;;;;32003:5:0::2;-1:-1:-1::0;;;;;31996:25:0::2;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;-1:-1:-1::0;31996:27:0;;:31:::2;:60::i;:71::-;31952:115;;;31992:1;31952:115;31923:26;:144:::0;26803:12;26795:7;:21;;;;;;;;;;;26817:9;26795:32;;;;;;;;:39;;26830:4;-1:-1:-1;;26795:39:0;;;;;;;;26867:10;26845:33;;;;;;:40;;;;;;;;;;47309:2276::o;50448:128::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50537:7:::1;::::0;50528:40:::1;::::0;;-1:-1:-1;;;50528:40:0;;-1:-1:-1;;;;;50528:40:0;;::::1;;::::0;::::1;::::0;;;50537:7;;;::::1;::::0;50528:29:::1;::::0;:40;;;;;50537:7:::1;::::0;50528:40;;;;;;;50537:7;;50528:40;::::1;;::::0;::::1;;;;::::0;::::1;29567:22:::0;;;-1:-1:-1;;;;;29567:22:0;;:::o;50026:132::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50116:5:::1;::::0;50104:46:::1;::::0;;-1:-1:-1;;;50104:46:0;;-1:-1:-1;;;;;50104:46:0;;::::1;;::::0;::::1;::::0;;;50116:5;;;::::1;::::0;50104:35:::1;::::0;:46;;;;;50116:5:::1;::::0;50104:46;;;;;;;50116:5;;50104:46;::::1;;::::0;::::1;;;;::::0;::::1;34375:433:::0;34426:24;34463:19;34485:15;:13;:15::i;:::-;34463:37;;34529:17;;34515:11;:31;34511:290;;;34592:5;;34585:38;;;-1:-1:-1;;;34585:38:0;;34617:4;34585:38;;;;;;34563:19;;-1:-1:-1;;;;;34592:5:0;;34585:23;;:38;;;;;;;;;;;;;;34592:5;34585:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34585:38:0;;-1:-1:-1;34638:13:0;34654:20;:18;:20::i;:::-;34638:36;-1:-1:-1;34693:9:0;;34689:101;;34742:32;34768:5;34742:21;:11;34758:4;34742:15;:21::i;:32::-;34723:51;;34511:290;;34375:433;;:::o;50584:198::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50712:7:::1;::::0;50703:71:::1;::::0;;-1:-1:-1;;;50703:71:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;-1:-1:-1;;;;;50712:7:0;;::::1;::::0;50703:27:::1;::::0;:71;;;;;50712:7:::1;::::0;50703:71;;;;;;;;50712:7;;50703:71;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50584:198:::0;;:::o;29343:24::-;;;;:::o;38273:113::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38352:11:::1;:26:::0;;-1:-1:-1;;;;;;38352:26:0::1;-1:-1:-1::0;;;;;38352:26:0;;;::::1;::::0;;;::::1;::::0;;38273:113::o;29886:40::-;;;;:::o;30195:46::-;;;;:::o;30682:22::-;;;-1:-1:-1;;;;;30682:22:0;;:::o;29374:24::-;;;;:::o;40796:499::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40947:3:::1;40927:16;:23;;40919:66;;;::::0;;-1:-1:-1;;;40919:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;41054:3;41018:32;:39;;:83;;;;;41097:4;41061:32;:40;;41018:83;41010:142;;;;-1:-1:-1::0;;;41010:142:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41176:15;:34:::0;;;;41221:31:::1;:66:::0;40796:499::o;39010:491::-;31564:8;;39100:4;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39197:1:::1;39188:6;:10;;;39180:64;;;;-1:-1:-1::0;;;39180:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39259:10;::::0;::::1;::::0;39255:84:::1;;39303:11;39324:1;39315:6;:10;39303:23;;;;;;;;;;;;;;;;;;39294:6;:32;39286:41;;;::::0;::::1;;39362:1;39353:6;:10;;;39349:84;;;39397:11;39409:6;39418:1;39409:10;39397:23;;;;;;;;;;;;;;;;;;39388:6;:32;39380:41;;;::::0;::::1;;39465:6;39443:11;39455:6;39443:19;;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:28:::0;-1:-1:-1;39489:4:0::1;31638:1;39010:491:::0;;;;:::o;50936:234::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51103:7:::1;::::0;51094:68:::1;::::0;;-1:-1:-1;;;51094:68:0;;-1:-1:-1;;;;;51094:68:0;;::::1;;::::0;::::1;::::0;;;;;;;;;::::1;::::0;;;;;;51103:7;;;::::1;::::0;51094:46:::1;::::0;:68;;;;;51103:7:::1;::::0;51094:68;;;;;;;51103:7;;51094:68;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;50936:234:::0;;;:::o;36396:1655::-;32518:11;;-1:-1:-1;;;32518:11:0;;;;32517:12;32509:54;;;;;-1:-1:-1;;;32509:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;36619:5:::1;:14:::0;;-1:-1:-1;;;;;;36619:14:0;;::::1;-1:-1:-1::0;;;;;36619:14:0;;::::1;::::0;;;::::1;::::0;;;36644:5:::1;:14:::0;;;::::1;::::0;;::::1;;::::0;;36669:6:::1;:16:::0;;;::::1;::::0;;::::1;;::::0;;36696:11:::1;:26:::0;;;::::1;::::0;;::::1;;::::0;;36733:7:::1;:18:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;36762:9:::1;:22:::0;;;36813:6:::1;36797:13;:22:::0;;;36850:31:::1;::::0;36877:3:::1;::::0;36850:22:::1;::::0;36868:3:::1;36850:17;:22::i;:31::-;36830:17;:51:::0;36936:145:::1;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;36936:145:0;;36960:12:::1;36936:145;::::0;::::1;::::0;36974:13:::1;36936:145:::0;;;;;;;36989:13:::1;36936:145:::0;;;;37004:13:::1;36936:145:::0;;;;37019:13:::1;36936:145:::0;;;;37034:14:::1;36936:145:::0;;;;37050:14:::1;36936:145:::0;;;;37066:14:::1;36936:145:::0;;;;::::1;::::0;:11:::1;::::0;:145:::1;;:::i;:::-;-1:-1:-1::0;37092:65:0::1;::::0;;::::1;::::0;::::1;::::0;;37113:3:::1;37092:65:::0;;37118:3:::1;37092:65;::::0;::::1;::::0;37123:3:::1;37092:65:::0;;;;;;;37128:3:::1;37092:65:::0;;;;37133:3:::1;37092:65:::0;;;;37138:3:::1;37092:65:::0;;;;37143:3:::1;37092:65:::0;;;;37148:3:::1;37092:65:::0;;;;37153:3:::1;37092:65:::0;;;;::::1;::::0;:17:::1;::::0;:65:::1;;:::i;:::-;-1:-1:-1::0;37198:3:0::1;37170:25;:31:::0;37276:5:::1;37248:25;:33:::0;37370:4:::1;37335:32;:39:::0;;;37465:3:::1;37435:27;:33:::0;37546:19:::1;:26:::0;37644:3:::1;37625:16;:22:::0;37675:4:::1;37658:14;:21:::0;37758:2:::1;37740:15;:20:::0;37805:3:::1;37771:31;:37:::0;-1:-1:-1;37896:5:0;37889:38:::1;::::0;;-1:-1:-1;;;37889:38:0;;37921:4:::1;37889:38;::::0;::::1;::::0;;;-1:-1:-1;;;;;37896:5:0;;::::1;::::0;37889:23:::1;::::0;:38;;;;;::::1;::::0;;;;;;;;;37896:5;37889:38;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;37889:38:0;37870:16:::1;:57:::0;37954:4:::1;37940:18:::0;;-1:-1:-1;;;;;;;;;;37940:18:0;;::::1;-1:-1:-1::0;;;37940:18:0::1;37969:21;37980:10;37969:21:::0;;::::1;::::0;;;38006:37:::1;::::0;;38030:12:::1;38006:37:::0;;;;::::1;::::0;;;;37889:38:::1;38006:37:::0;;::::1;36396:1655:::0;;;;;;:::o;41922:129::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42009:15:::1;:34:::0;41922:129::o;29761:28::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29761:28:0;:::o;29796:34::-;;;;;;;;;;42059:125;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42144:14:::1;:32:::0;42059:125::o;38059:101::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38132:8:::1;:20:::0;;-1:-1:-1;;;;;;38132:20:0::1;-1:-1:-1::0;;;;;38132:20:0;;;::::1;::::0;;;::::1;::::0;;38059:101::o;29124:40::-;29157:7;29124:40;:::o;35557:785::-;35608:13;35634:19;35656:15;:13;:15::i;:::-;35634:37;;35700:17;;35686:11;:31;35682:653;;;35734:35;35772:44;35812:3;35772:35;35790:16;;35772:13;;:17;;:35;;;;:::i;:44::-;35734:82;;35850:27;35835:11;:42;35831:493;;35930:22;35955:61;36010:5;35955:50;35990:14;;35955:30;35971:13;;35955:11;:15;;:30;;;;:::i;:61::-;36043:13;;35930:86;;-1:-1:-1;36043:33:0;;35930:86;36043:17;:33::i;:::-;36035:41;;36116:1;36099:14;;:18;:44;;;;;36129:14;;36121:5;:22;36099:44;36095:115;;;36176:14;;36168:22;;36095:115;35831:493;;;;36295:13;;36287:21;;35831:493;35682:653;35557:785;;:::o;29680:32::-;;;;:::o;30317:38::-;;;;:::o;30362:30::-;;;;:::o;41303:611::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41508:22:0;::::1;41500:39;;;::::0;;-1:-1:-1;;;41500:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;41500:39:0;;;;;;;;;;;;;::::1;;41583:4;41558:21;:29;;41550:54;;;::::0;;-1:-1:-1;;;41550:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41550:54:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;41633:22:0;::::1;41625:39;;;::::0;;-1:-1:-1;;;41625:39:0;;::::1;;::::0;;::::1;::::0;;;;;;;;-1:-1:-1;;;41625:39:0;;;;;;;;;;;;;::::1;;41708:3;41683:21;:28;;41675:53;;;::::0;;-1:-1:-1;;;41675:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;41675:53:0;;;;;;;;;;;;;::::1;;41749:7;:18:::0;;-1:-1:-1;;;;;;41749:18:0;;::::1;-1:-1:-1::0;;;;;41749:18:0;;::::1;;::::0;;;41778:20:::1;:44:::0;;;;41833:7:::1;:18:::0;;;;::::1;::::0;;;::::1;;::::0;;41862:20:::1;:44:::0;41303:611::o;50790:138::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50884:7:::1;::::0;50875:45:::1;::::0;;-1:-1:-1;;;50875:45:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;50884:7:0;;::::1;::::0;50875:37:::1;::::0;:45;;;;;50884:7:::1;::::0;50875:45;;;;;;;;50884:7;;50875:45;::::1;;::::0;::::1;;;;::::0;::::1;32754:114:::0;32801:7;32828:32;32842:17;29157:7;32842:5;;:9;;:17;;;;:::i;:::-;32828:9;;;:13;:32::i;:::-;32821:39;;32754:114;:::o;30557:29::-;;;;:::o;30519:31::-;;;;:::o;40220:303::-;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40371:3:::1;40339:28;:35;;:75;;;;;40410:4;40378:28;:36;;40339:75;40331:100;;;::::0;;-1:-1:-1;;;40331:100:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;40331:100:0;;;;;;;;;;;;;::::1;;40457:27;:58:::0;40220:303::o;39509:404::-;31564:8;;39605:4;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39702:1:::1;39693:6;:10;;;39685:64;;;;-1:-1:-1::0;;;39685:64:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39778:2;39768:6;:12;;:30;;;;;39794:4;39784:6;:14;;39768:30;39760:63;;;::::0;;-1:-1:-1;;;39760:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;39760:63:0;;;;;;;;;;;;;::::1;;39877:6;39849:17;39867:6;39849:25;;;;;;;;;38168:97:::0;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38239:7:::1;:18:::0;;-1:-1:-1;;;;;;38239:18:0::1;-1:-1:-1::0;;;;;38239:18:0;;;::::1;::::0;;;::::1;::::0;;38168:97::o;29839:40::-;;;;:::o;30036:34::-;;;;:::o;29537:21::-;;;-1:-1:-1;;;;;29537:21:0;;:::o;33200:306::-;33297:11;;33315:5;;33289:38;;;-1:-1:-1;;;33289:38:0;;-1:-1:-1;;;;;33315:5:0;;;33289:38;;;;33322:4;33289:38;;;;;;33253:19;;33297:11;;;;;33289:25;;:38;;;;;;;;;;;;;;;33297:11;33289:38;;;;;;;;;;50166:134;31564:8;;-1:-1:-1;;;;;31564:8:0;31576:10;31564:22;31556:71;;;;-1:-1:-1;;;31556:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50257:6:::1;::::0;50245:47:::1;::::0;;-1:-1:-1;;;50245:47:0;;-1:-1:-1;;;;;50245:47:0;;::::1;;::::0;::::1;::::0;;;50257:6;;;::::1;::::0;50245:36:::1;::::0;:47;;;;;50257:6:::1;::::0;50245:47;;;;;;;50257:6;;50245:47;::::1;;::::0;::::1;;;;::::0;::::1;29987:42:::0;;;;:::o;29645:28::-;;;;:::o;30158:30::-;;;;:::o;29405:45::-;;;;:::o;3763:220::-;3821:7;3845:6;3841:20;;-1:-1:-1;3860:1:0;3853:8;;3841:20;3884:5;;;3888:1;3884;:5;:1;3908:5;;;;;:10;3900:56;;;;-1:-1:-1;;;3900:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3974:1;3763:220;-1:-1:-1;;;3763:220:0:o;4461:153::-;4519:7;4551:1;4547;:5;4539:44;;;;;-1:-1:-1;;;4539:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4605:1;4601;:5;;;;;;;4461:153;-1:-1:-1;;;4461:153:0:o;3346:158::-;3404:7;3437:1;3432;:6;;3424:49;;;;;-1:-1:-1;;;3424:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3491:5:0;;;3346:158::o;2884:179::-;2942:7;2974:5;;;2998:6;;;;2990:46;;;;;-1:-1:-1;;;2990:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26295:125;26388:12;26356:4;26380:21;;;;;;;;;;;26402:9;26380:32;;;;;;;;;;26295:125;:::o;26428:126::-;26521:12;26489:4;26513:21;;;;;;;;;;;26535:10;26513:33;;;;;;;;;;26428:126;:::o;332:106::-;390:7;421:1;417;:5;:13;;429:1;417:13;;;-1:-1:-1;425:1:0;;410:20;-1:-1:-1;332:106:0:o;10282:177::-;10392:58;;;-1:-1:-1;;;;;10392:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10392:58:0;-1:-1:-1;;;10392:58:0;;;10365:86;;10385:5;;10365:19;:86::i;43337:101::-;43398:11;;;;;;;;;-1:-1:-1;;;;;43398:11:0;-1:-1:-1;;;;;43390:27:0;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43386:45;43337:101::o;45897:1016::-;45970:5;;45958:47;;;-1:-1:-1;;;45958:47:0;;45990:4;45958:47;;;;;;;;;;;;-1:-1:-1;;;;;45970:5:0;;;;45958:23;;:47;;;;;;;;;;;;;;;45970:5;;45958:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46065:20:0;;46018:28;;46065:24;46061:252;;46129:44;46167:5;46129:33;46141:20;;46129:7;:11;;:33;;;;:::i;:44::-;46195:5;;46211:7;;46188:53;;;-1:-1:-1;;;46188:53:0;;-1:-1:-1;;;;;46211:7:0;;;46188:53;;;;;;;;;;;;46106:67;;-1:-1:-1;46195:5:0;;;46188:22;;:53;;;;;;;;;;;;;;;46195:5;;46188:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46261:40:0;;;46275:3;46261:40;;46188:53;46261:40;;;;;;;;;;;;;;;;;;46061:252;46372:20;;46325:28;;46372:24;46368:252;;46436:44;46474:5;46436:33;46448:20;;46436:7;:11;;:33;;;;:::i;:44::-;46502:5;;46518:7;;46495:53;;;-1:-1:-1;;;46495:53:0;;-1:-1:-1;;;;;46518:7:0;;;46495:53;;;;;;;;;;;;46413:67;;-1:-1:-1;46502:5:0;;;46495:22;;:53;;;;;;;;;;;;;;;46502:5;;46495:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46568:40:0;;;46582:3;46568:40;;46495:53;46568:40;;;;;;;;;;;;;;;;;;46368:252;46642:59;46680:20;46642:33;:7;46654:20;46642:11;:33::i;:::-;:37;;:59::i;:::-;46740:7;;46721:5;;46632:69;;-1:-1:-1;46714:37:0;;-1:-1:-1;;;;;46721:5:0;;;;46740:7;;46714:25;:37::i;:::-;46788:7;;46769:5;;46762:43;;-1:-1:-1;;;;;46769:5:0;;;;46788:7;46797;46762:25;:43::i;:::-;46825:7;;46816:46;;;-1:-1:-1;;;46816:46:0;;;;;;;;;;-1:-1:-1;;;;;46825:7:0;;;;46816:37;;:46;;;;;46825:7;;46816:46;;;;;;;;46825:7;;46816:46;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46878:27:0;;;46892:3;46878:27;;;;;;;;;;;;-1:-1:-1;46878:27:0;;;;;;;;-1:-1:-1;46878:27:0;45897:1016;;;:::o;46921:380::-;47006:7;47046:1;47026:225;47107:11;47119:6;47107:19;;;;;;;;;;;;;;;;;;47091:12;:35;47087:153;;47175:17;47193:6;47175:25;;;;;;;;;;;;;;;;;;;;47147;:53;47219:5;;47087:153;-1:-1:-1;;47062:8:0;47026:225;;;-1:-1:-1;;47268:25:0;;46921:380;;;:::o;12587:761::-;13011:23;13037:69;13065:4;13037:69;;;;;;;;;;;;;;;;;13045:5;-1:-1:-1;;;;;13037:27:0;;;:69;;;;;:::i;:::-;13121:17;;13011:95;;-1:-1:-1;13121:21:0;13117:224;;13263:10;13252:30;;;;;;;;;;;;;;;-1:-1:-1;13252:30:0;13244:85;;;;-1:-1:-1;;;13244:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10941:622;11311:10;;;11310:62;;-1:-1:-1;11327:39:0;;;-1:-1:-1;;;11327:39:0;;11351:4;11327:39;;;;-1:-1:-1;;;;;11327:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11327:39:0;:44;11310:62;11302:152;;;;-1:-1:-1;;;11302:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11492:62;;;-1:-1:-1;;;;;11492:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11492:62:0;-1:-1:-1;;;11492:62:0;;;11465:90;;11485:5;;11465:19;:90::i;16883:195::-;16986:12;17018:52;17040:6;17048:4;17054:1;17057:12;17018:21;:52::i;:::-;17011:59;16883:195;-1:-1:-1;;;;16883:195:0:o;17935:530::-;18062:12;18120:5;18095:21;:30;;18087:81;;;;-1:-1:-1;;;18087:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18187:18;18198:6;18187:10;:18::i;:::-;18179:60;;;;;-1:-1:-1;;;18179:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18313:12;18327:23;18354:6;-1:-1:-1;;;;;18354:11:0;18374:5;18382:4;18354:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18354:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18312:75;;;;18405:52;18423:7;18432:10;18444:12;18405:17;:52::i;:::-;18398:59;17935:530;-1:-1:-1;;;;;;;17935:530:0:o;13965:422::-;14332:20;14371:8;;;13965:422::o;20475:742::-;20590:12;20619:7;20615:595;;;-1:-1:-1;20650:10:0;20643:17;;20615:595;20764:17;;:21;20760:439;;21027:10;21021:17;21088:15;21075:10;21071:2;21067:19;21060:44;20975:148;21170:12;21163:20;;-1:-1:-1;;;21163:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://9fead1dd8b0c2128073e23e4d784d18629995b2c09feb69dcdf2f02404cdcabb
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Validator ID :
0 FTM
Amount Staked
0
Amount Delegated
0
Staking Total
0
Staking Start Epoch
0
Staking Start Time
0
Proof of Importance
0
Origination Score
0
Validation Score
0
Active
0
Online
0
Downtime
0 s
Address | Amount | claimed Rewards | Created On Epoch | Created On |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.